Class: Couchbase::Collection::LookupInReplicaResult

Inherits:
LookupInResult show all
Defined in:
lib/couchbase/collection_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/collection_options.rb
more...

Instance Attribute Summary collapse

Attributes inherited from LookupInResult

#cas, #encoded, #transcoder

Instance Method Summary collapse

Methods inherited from LookupInResult

#content, #exists?

Constructor Details

#initialize {|self| ... } ⇒ LookupInReplicaResult

Returns a new instance of LookupInReplicaResult.

Yield Parameters:

[View source]

243
244
245
246
# File 'lib/couchbase/collection_options.rb', line 243

def initialize
  super
  yield self if block_given?
end

Instance Attribute Details

#is_replicaBoolean Also known as: replica?

Returns true if the document was read from a replica node.

Returns:

  • (Boolean)

    true if the document was read from a replica node


239
240
241
# File 'lib/couchbase/collection_options.rb', line 239

def is_replica
  @is_replica
end