类:Mongo::Operation::Explain::Result
- 定义于:
- 构建/ruby-driver-v2.19/lib/ mongo /operation/explain/result.rb
Overview
在带有解释的 find 命令中定义结果的自定义行为。
常量摘要
从Result继承的常量
Result::CURSOR 、 Result::CURSOR_ID 、 Result::FIRST_BATCH 、 Result::N 、 Result::NAMESPACE 、 Result::NEXT_BATCH 、 Result::OK 、 Result::RESULT
实例属性摘要
从Result继承的属性
#connection_description 、 #connection_global_id 、 #replies
实例方法摘要折叠
-
#cursor_id ⇒ 0
private
获取游标 ID。
-
# 个documents ⇒ Array<BSON::Document>
获取结果中的文档。
从Result继承的方法
#acknowledged? 、#cluster_time、# each 、# error 、# has_cursor_id? , #initialize , #inspect , #labels , 命名空间 , #ok? , #operation_time , #reply , #returned_count , #snapshot_timestamp , # success ? 、 #topology_version 、 #validate! , #write_concern_error? , #liter_count
构造函数详情
该类从Mongo::Operation::Result继承了一个构造函数
实例方法详细信息
# cursor_id ⇒ 0
此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。
获取游标 ID。
37 38 39 |
# File ' 构建/ruby-driver-v2.19/lib/ mongo /operation/explain/result.rb', 第37行 def cursor_id 0 end |
# 个documents ⇒ Array<BSON::Document>
获取结果中的文档。
50 51 52 |
# File ' 构建/ruby-driver-v2.19/lib/ mongo /operation/explain/result.rb', 第50行 def 文档 回复.文档 end |