Class: Aws::Plugins::RequestCompression::CompressionHandler::ChunkBuffer Private

Inherits:
Object
  • Object
show all
Defined in:
lib/aws-sdk-core/plugins/request_compression.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeChunkBuffer

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of ChunkBuffer.



203
204
205
# File 'lib/aws-sdk-core/plugins/request_compression.rb', line 203

def initialize
  @last_chunk = nil
end

Instance Attribute Details

#last_chunkObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



207
208
209
# File 'lib/aws-sdk-core/plugins/request_compression.rb', line 207

def last_chunk
  @last_chunk
end

Instance Method Details

#write(data) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



209
210
211
# File 'lib/aws-sdk-core/plugins/request_compression.rb', line 209

def write(data)
  @last_chunk = data
end