class Fluent::Plugin::S3Input::TextExtractor

Public Instance Methods

content_type() click to toggle source
# File lib/fluent/plugin/in_s3.rb, line 429
def content_type
  'text/plain'.freeze
end
ext() click to toggle source
# File lib/fluent/plugin/in_s3.rb, line 425
def ext
  'txt'.freeze
end
extract(io) click to toggle source
# File lib/fluent/plugin/in_s3.rb, line 433
def extract(io)
  io.read
end