异常:Mongo::Error::MissingFileChunk

继承:
Mongo::Error
  • 对象
显示全部
定义于:
build/Ruby-driver-v 2.19 /lib/mongo/error/missing_file_chunk.rb

Overview

如果从数据块读取时下一个数据段没有预期的序列号 (n),则触发该警报。

由于:

  • 2.1.0

常量摘要

Mongo::Error继承的常量

BAD_VALUECodeCURSOR_NOT_FOUNDERRERRMSGERRORTRANSIENT_TRANSACTION_ERROR_LABELUNKNOWN_ERRORUNKNOWN_TRANSACTION_COMMIT_RESULT_LABELWRITE_CONCERN_ERRORWRITE_CONCERN_ERRORSWRITE_ERRORS

实例属性摘要

包含在Notable中的属性

#connection_global_id#Generation#service_id

实例方法摘要折叠

Mongo::Error继承的方法

#change_stream_resumable? , #write_concern_error_label? , #write_concern_error_labels

ChangeStreamResumable中包含的方法

#change_stream_resumable?

WriteRetryable 中包含的方法

#write_retryable?

Labelable 中包含的方法

#add_label , #label? , #labels

Notable中包含的方法

#add_note#add_notes#notes#to_s

构造函数详情

#initialize (expected_n, 数据块) ⇒ MissingFileChunk

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

创建新的异常。

例子:

创建新的异常。

Mongo::Error::MissingFileChunk.new(expected_n, chunk)

参数:

  • 预期_n ( Integer )

    预期索引值。

  • 数据段 ( Grid::File::Chunk | Integer )

    从数据块读取的GridFS。

由于:

  • 2.1.0



38
39
40
41
42
43
44
# File 'build/Ruby-driver-v 2.19 /lib/mongo/error/missing_file_chunk.rb', 第38行

def 初始化(预期_n, 数据段)
  if 数据段.is_a?(整型)
    (" 缺少数据段。 应有 #{ embedded_n } 个数据段,但得到了 #{ { chunk } } ")
  else
    ("序列中出现意外的数据段。预计下一个数据段的数据块数据块#{预期_n } ,但实际索引#{ 数据块 . n } ")
  end
end