类:Mongo::WriteConcern::Unacknowledged

继承:
Base
  • 对象
显示全部
定义于:
构建/ruby-driver-v2.19/lib/ mongo /write_concern/unacknowledged.rb

Overview

未确认的写关注(write concern)不会在网络和连接异常之外的写入时提供错误。

由于:

  • 2.0.0

常量摘要折叠

noop =

gle 的 noop 常量。

由于:

  • 2.0.0

nil

实例属性摘要

Base继承的属性

#options

实例方法摘要折叠

Base继承的方法

#initialize

构造函数详情

该类从Mongo::WriteConcern::Base继承了一个构造函数

实例方法详细信息

#已确认?true , false

此写关注(write concern)是否已确认。

例子:

此写关注(write concern)对象是否已确认。

write_concern.acknowledged?

返回:

  • ( true , false )

    此写关注(write concern)是否已得到确认。

由于:

  • 2.5.0



51
52
53
# File ' 构建/ruby-driver-v2.19/lib/ mongo /write_concern/unacknowledged.rb', 第51行

def 已确认?
  false
end

#get_last_errornil

获取针对未确认写入的 gle 命令。

例子:

获取 gle 命令。

unacknowledged.get_last_error

返回:

  • ( nil )

    noop。

由于:

  • 2.0.0



39
40
41
# File ' 构建/ruby-driver-v2.19/lib/ mongo /write_concern/unacknowledged.rb', 第39行

def get_last_error
  noop
end

#检查string

获取未确认的写关注(write concern)的人类可读string表示形式。

例子:

检查写关注(write concern)。

write_concern.inspect

返回:

  • ( string )

    未确认的写关注的string表示形式。

由于:

  • 2.0.0



63
64
65
# File ' 构建/ruby-driver-v2.19/lib/ mongo /write_concern/unacknowledged.rb', 第63行

def 检查
  " #<Mongo::WriteConcern::Unacknowledged: 0 x #{ object_id } options= #{ options } > "
end