Class: Couchbase::Collection::ScanResults

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/couchbase/collection_options.rb

Instance Method Summary collapse

Constructor Details

#initialize(core_scan_result:, transcoder:) ⇒ ScanResults

Returns a new instance of ScanResults.



365
366
367
368
# File 'lib/couchbase/collection_options.rb', line 365

def initialize(core_scan_result:, transcoder:)
  @core_scan_result = core_scan_result
  @transcoder = transcoder
end

Instance Method Details

#eachObject



370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
# File 'lib/couchbase/collection_options.rb', line 370

def each
  return enum_for(:each) unless block_given?

  loop do
    resp = @core_scan_result.next_item

    break if resp.nil?

    if resp[:id_only]
      yield ScanResult.new(
        id: resp[:id],
        id_only: resp[:id_only],
        transcoder: @transcoder
      )
    else
      yield ScanResult.new(
        id: resp[:id],
        id_only: resp[:id_only],
        cas: resp[:cas],
        expiry: resp[:expiry],
        encoded: resp[:encoded],
        flags: resp[:flags],
        transcoder: @transcoder
      )
    end
  end
end