Class: Fluent::KafkaInput::TopicEntry

Inherits:
Object
  • Object
show all
Defined in:
lib/fluent/plugin/in_kafka.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(topic, partition, offset) ⇒ TopicEntry

Returns a new instance of TopicEntry.



298
299
300
301
302
# File 'lib/fluent/plugin/in_kafka.rb', line 298

def initialize(topic, partition, offset)
  @topic = topic
  @partition = partition
  @offset = offset
end

Instance Attribute Details

#offsetObject (readonly)

Returns the value of attribute offset.



303
304
305
# File 'lib/fluent/plugin/in_kafka.rb', line 303

def offset
  @offset
end

#partitionObject (readonly)

Returns the value of attribute partition.



303
304
305
# File 'lib/fluent/plugin/in_kafka.rb', line 303

def partition
  @partition
end

#topicObject (readonly)

Returns the value of attribute topic.



303
304
305
# File 'lib/fluent/plugin/in_kafka.rb', line 303

def topic
  @topic
end