Class: Kafkat::Command::Topics

Inherits:
Base
  • Object
show all
Defined in:
lib/kafkat/command/topics.rb

Instance Attribute Summary

Attributes inherited from Base

#config

Instance Method Summary collapse

Methods inherited from Base

#admin, #initialize, #kafka_logs, register_as, usage, usages, #zookeeper

Methods included from Kafkat::CommandIO

#prompt_and_execute_assignments

Methods included from Formatting

#justify, #print_assignment, #print_assignment_header, #print_broker, #print_broker_header, #print_partition, #print_partition_header, #print_topic, #print_topic_header

Constructor Details

This class inherits a constructor from Kafkat::Command::Base

Instance Method Details

#runObject

[View source]

9
10
11
12
# File 'lib/kafkat/command/topics.rb', line 9

def run
  ts = zookeeper.get_topics
  ts.each { |name, t| print_topic(t) }
end