Class: Couchbase::Options::Append

Inherits:
Base
  • Object
show all
Defined in:
lib/couchbase/options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/options.rb
more...

Overview

Instance Attribute Summary collapse

Attributes inherited from Base

#client_context, #parent_span, #retry_strategy, #timeout

Instance Method Summary collapse

Constructor Details

#initialize(cas: nil, timeout: nil, retry_strategy: nil, client_context: nil, parent_span: nil) {|self| ... } ⇒ Append

Creates an instance of options for BinaryCollection#append

Parameters:

  • cas (Integer) (defaults to: nil)

    The default CAS used (0 means no CAS in this context)

  • timeout (Integer, #in_milliseconds, nil) (defaults to: nil)
  • retry_strategy (Proc, nil) (defaults to: nil)

    the custom retry strategy, if set

  • client_context (Hash, nil) (defaults to: nil)

    the client context data, if set

  • parent_span (Span, nil) (defaults to: nil)

    if set holds the parent span, that should be used for this request

Yield Parameters:

[View source]

1043
1044
1045
1046
1047
1048
1049
1050
1051
# File 'lib/couchbase/options.rb', line 1043

def initialize(cas: nil,
               timeout: nil,
               retry_strategy: nil,
               client_context: nil,
               parent_span: nil)
  super(timeout: timeout, retry_strategy: retry_strategy, client_context: client_context, parent_span: parent_span)
  @cas = cas
  yield self if block_given?
end

Instance Attribute Details

#casInteger

Returns:

  • (Integer)

1031
1032
1033
# File 'lib/couchbase/options.rb', line 1031

def cas
  @cas
end