Class: Fluent::Plugin::S3Output::Compressor
- Inherits:
-
Object
- Object
- Fluent::Plugin::S3Output::Compressor
show all
- Includes:
- Configurable
- Defined in:
- lib/fluent/plugin/out_s3.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Constructor Details
#initialize(opts = {}) ⇒ Compressor
570
571
572
573
574
|
# File 'lib/fluent/plugin/out_s3.rb', line 570
def initialize(opts = {})
super()
@buffer_type = opts[:buffer_type]
@log = opts[:log]
end
|
Instance Attribute Details
#buffer_type ⇒ Object
Returns the value of attribute buffer_type.
576
577
578
|
# File 'lib/fluent/plugin/out_s3.rb', line 576
def buffer_type
@buffer_type
end
|
#log ⇒ Object
Returns the value of attribute log.
576
577
578
|
# File 'lib/fluent/plugin/out_s3.rb', line 576
def log
@log
end
|
Instance Method Details
#compress(chunk, tmp) ⇒ Object
588
589
|
# File 'lib/fluent/plugin/out_s3.rb', line 588
def compress(chunk, tmp)
end
|
578
579
580
|
# File 'lib/fluent/plugin/out_s3.rb', line 578
def configure(conf)
super
end
|
#content_type ⇒ Object
585
586
|
# File 'lib/fluent/plugin/out_s3.rb', line 585
def content_type
end
|
#ext ⇒ Object
582
583
|
# File 'lib/fluent/plugin/out_s3.rb', line 582
def ext
end
|