Class: Aws::Plugins::RequestCompression::CompressionHandler::ChunkBuffer Private
- Inherits:
- 
      Object
      
        - Object
- Aws::Plugins::RequestCompression::CompressionHandler::ChunkBuffer
 
- 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
- #last_chunk ⇒ Object readonly private
Instance Method Summary collapse
- 
  
    
      #initialize  ⇒ ChunkBuffer 
    
    
  
  
  
    constructor
  
  
  
  
  
  private
  
    A new instance of ChunkBuffer. 
- #write(data) ⇒ Object private
Constructor Details
#initialize ⇒ ChunkBuffer
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_chunk ⇒ Object (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 |