module CC::Kafka::OffsetStorage::Minidoc

Public Class Methods

included(base) click to toggle source
# File lib/cc/kafka/offset_storage/minidoc.rb, line 5
def self.included(base)
  base.extend ClassMethods
  base.attribute :topic, String
  base.attribute :partition, Integer
  base.attribute :current, Integer
end