异常:Mongo::Error::UnexpectedChunkLength

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

Overview

如果从数据块读取时下一个数据段的长度不符合预期,则触发该警报。

由于:

  • 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_len, chunk) ⇒ UnexpectedChunkLength

创建新的异常。

例子:

创建新的异常。

Mongo::Error::UnexpectedChunkLength.new(expected_len, chunk)

参数:

  • 预期长度 ( Integer )

    预期长度。

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

    从数据块读取的GridFS。

由于:

  • 2.1.0



36
37
38
39
# File 'build/Ruby-driver-v 2.19 /lib/mongo/error/unexpected_chunk_length.rb', 第36行

def 初始化(预期长度, 数据段)
  ("意外的数据段长度。数据段的长度数据块#{ 数据块 . data . data . size }但预期长度" +
    " #{ embedded_len }或成为序列中的最后一个数据段。 ")
end