Class: Couchbase::Bucket::ViewMetaData

Inherits:
Object
  • Object
show all
Defined in:
lib/couchbase/view_options.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of ViewMetaData.

Yield Parameters:



49
50
51
# File 'lib/couchbase/view_options.rb', line 49

def initialize
  yield self if block_given?
end

Instance Attribute Details

#debug_info=(value) ⇒ Object (writeonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



42
43
44
# File 'lib/couchbase/view_options.rb', line 42

def debug_info=(value)
  @debug_info = value
end

#total_rowsInteger

Returns:

  • (Integer)


39
40
41
# File 'lib/couchbase/view_options.rb', line 39

def total_rows
  @total_rows
end

Instance Method Details

#debugObject



44
45
46
# File 'lib/couchbase/view_options.rb', line 44

def debug
  JSON.parse(@debug_info)
end