Class: Couchbase::Options::Unlock
- Defined in:
- lib/couchbase/options.rb,
/code/couchbase-ruby-client/lib/couchbase/options.rb
Overview
Options for Collection#unlock
Instance Attribute Summary
Attributes inherited from Base
#client_context, #parent_span, #retry_strategy, #timeout
Instance Method Summary collapse
-
#initialize(timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Unlock
constructor
Creates an instance of options for Collection#unlock.
Constructor Details
#initialize(timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Unlock
Creates an instance of options for Collection#unlock
375 376 377 378 379 380 381 |
# File 'lib/couchbase/options.rb', line 375 def initialize(timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) super yield self if block_given? end |