异常:Mongo::Error::MaxMessageSize

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

Overview

尝试发送超过最大消息大小的消息时引发的异常。

由于:

  • 2.0.0

常量摘要折叠

MESSAGE =

该消息是恒定的。

由于:

  • 2.0.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 (max_size = nil) ⇒ MaxMessageSize

实例化新异常。

例子:

实例化异常。

Mongo::Error::MaxMessageSize.new(max)

参数:

  • max_size 整数 (默认为: nil

    最大消息大小。

由于:

  • 2.0.0



40
41
42
# File 'build/Ruby-driver-v 2.19 /lib/mongo/error/max_message_size.rb', 第40行

def 初始化(max_size = nil)
  (max_size ?  message + "最大值为#{ max_size }  " : message)
end