Class: Chef::StreamPart
- Inherits:
-
Object
- Object
- Chef::StreamPart
- Defined in:
- lib/chef/streaming_cookbook_uploader.rb
Instance Method Summary collapse
-
#initialize(stream, size) ⇒ StreamPart
constructor
A new instance of StreamPart.
-
#read(offset, how_much) ⇒ Object
read the specified amount from the stream.
- #size ⇒ Object
Constructor Details
#initialize(stream, size) ⇒ StreamPart
Returns a new instance of StreamPart.
105 106 107 |
# File 'lib/chef/streaming_cookbook_uploader.rb', line 105 def initialize(stream, size) @stream, @size = stream, size end |
Instance Method Details
#read(offset, how_much) ⇒ Object
read the specified amount from the stream
114 115 116 |
# File 'lib/chef/streaming_cookbook_uploader.rb', line 114 def read(offset, how_much) @stream.read(how_much) end |
#size ⇒ Object
109 110 111 |
# File 'lib/chef/streaming_cookbook_uploader.rb', line 109 def size @size end |