Class: PKGWizard::StreamingUploader::StreamPart
- Inherits:
-
Object
- Object
- PKGWizard::StreamingUploader::StreamPart
- Defined in:
- lib/pkg-wizard/streaming_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.
66 67 68 |
# File 'lib/pkg-wizard/streaming_uploader.rb', line 66 def initialize(stream, size) @stream, @size = stream, size end |
Instance Method Details
#read(offset, how_much) ⇒ Object
read the specified amount from the stream
75 76 77 |
# File 'lib/pkg-wizard/streaming_uploader.rb', line 75 def read(offset, how_much) @stream.read(how_much) end |
#size ⇒ Object
70 71 72 |
# File 'lib/pkg-wizard/streaming_uploader.rb', line 70 def size @size end |