Class: Angelo::Base::ChunkedResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/angelo/base.rb

Instance Method Summary collapse

Constructor Details

#initialize(&block) ⇒ ChunkedResponse

Returns a new instance of ChunkedResponse.



451
452
453
# File 'lib/angelo/base.rb', line 451

def initialize &block
  @chunker = block
end

Instance Method Details

#each(&block) ⇒ Object



455
456
457
# File 'lib/angelo/base.rb', line 455

def each &block
  @chunker[block]
end