类:Mongo::Crypt::AutoEncryptionContext Private
- 定义于:
- build/Ruby-driver-v 2.19 /lib/mongo/crypt/auto_encryption_context.rb
Overview
此类是私有 API 的一部分。 应尽可能避免使用此类,因为它将来可能会被删除或更改。
为自动加密初始化的 Context 对象
实例属性摘要
从Context继承的属性
实例方法摘要折叠
-
#initialize (mongocrypt, io, db_name, command) ⇒ AutoEncryptionContext
构造函数
private
创建一个新的 AutoEncryptionContext 对象。
从Context继承的方法
构造函数详情
#initialize (mongocrypt, io, db_name, command) ⇒ AutoEncryptionContext
此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。
创建新的 AutoEncryptionContext 对象
36 37 38 39 40 41 42 43 44 |
# File 'build/Ruby-driver-v 2.19 /lib/mongo/crypt/auto_encryption_context.rb', 第36行 def 初始化(mongocrypt, io, db_name, 命令) 超(mongocrypt, io) @db_name = db_name @command = 命令 # 初始化 ctx 对象以进行自动加密 绑定.ctx_encrypt_init(self, @db_name, @command) end |