类:Mongo::WriteConcern::Unacknowledged
- 定义于:
- 构建/ruby-driver-v2.19/lib/ mongo /write_concern/unacknowledged.rb
Overview
未确认的写关注(write concern)不会在网络和连接异常之外的写入时提供错误。
常量摘要折叠
- noop =
gle 的 noop 常量。
nil
实例属性摘要
从Base继承的属性
实例方法摘要折叠
-
#已确认? ⇒ true, false
此写关注(write concern)是否已确认。
-
#get_last_error ⇒ nil
获取针对未确认写入的 gle 命令。
-
#检查⇒ string
获取未确认的写关注(write concern)的人类可读string表示形式。
从Base继承的方法
构造函数详情
该类从Mongo::WriteConcern::Base继承了一个构造函数
实例方法详细信息
#已确认? ⇒ true , false
此写关注(write concern)是否已确认。
51 52 53 |
# File ' 构建/ruby-driver-v2.19/lib/ mongo /write_concern/unacknowledged.rb', 第51行 def 已确认? false end |
#get_last_error ⇒ nil
获取针对未确认写入的 gle 命令。
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表示形式。
63 64 65 |
# File ' 构建/ruby-driver-v2.19/lib/ mongo /write_concern/unacknowledged.rb', 第63行 def 检查 " #<Mongo::WriteConcern::Unacknowledged: 0 x #{ object_id } options= #{ } > " end |