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.



212
213
214
# File 'lib/aws-sdk-core/plugins/request_compression.rb', line 212

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.



216
217
218
# File 'lib/aws-sdk-core/plugins/request_compression.rb', line 216

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.



218
219
220
# File 'lib/aws-sdk-core/plugins/request_compression.rb', line 218

def write(data)
  @last_chunk = data
end