类:Mongo::Operation::Find::Result

继承:
结果
  • 对象
显示全部
定义于:
build/Ruby-driver-v 2.19 /lib/mongo/operation/find/result.rb

Overview

定义 find 命令中结果的自定义行为。

由于:

  • 2.2.0

常量摘要

Result继承的常量

Result::CURSORResult::CURSOR_IDResult::FIRST_BATCHResult::NResult::NAMESPACEResult::NEXT_BATCHResult::OKResult::RESULT

实例属性摘要

Result继承的属性

#connection_description#connection_global_id#replies

实例方法摘要折叠

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 = " Integer "

此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。

获取游标 ID。

例子:

获取游标 ID。

result.cursor_id

返回:

  • ( Integer )

    游标 ID。

由于:

  • 2.2.0



37
38
39
# File ' 构建/ruby-driver-v2.19/lib/ mongo /operation/find/result.rb', 第37行

def cursor_id
  cursor_document ? cursor_document[CURSOR_ID] : 
end

# 个documentsArray<BSON::Document>

获取结果中的文档。

例子:

获取文档。

result.documents

返回:

  • ( Array<BSON::Document> )

    文档。

由于:

  • 2.2.0



50
51
52
# File ' 构建/ruby-driver-v2.19/lib/ mongo /operation/find/result.rb', 第50行

def 文档
  cursor_document[FIRST_BATCH]
end

#命名空间string

此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。

执行此查找命令的命名空间。

返回:

  • ( string )

    命名空间,通常采用“数据库.集合”。

由于:

  • 2.2.0



60
61
62
# File ' 构建/ruby-driver-v2.19/lib/ mongo /operation/find/result.rb', 第60行

def namespace
  cursor_document[' ns ']
end