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.



327
328
329
330
331
# File 'lib/fluent/plugin/in_kafka.rb', line 327

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

Instance Attribute Details

#offsetObject (readonly)

Returns the value of attribute offset.



332
333
334
# File 'lib/fluent/plugin/in_kafka.rb', line 332

def offset
  @offset
end

#partitionObject (readonly)

Returns the value of attribute partition.



332
333
334
# File 'lib/fluent/plugin/in_kafka.rb', line 332

def partition
  @partition
end

#topicObject (readonly)

Returns the value of attribute topic.



332
333
334
# File 'lib/fluent/plugin/in_kafka.rb', line 332

def topic
  @topic
end