Class: Rack::Cache::EntityStore::Disk::Body

Inherits:
File
  • Object
show all
Defined in:
lib/rack/cache/entity_store.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#eachObject



106
107
108
109
110
# File 'lib/rack/cache/entity_store.rb', line 106

def each
  while part = read(8192)
    yield part
  end
end