Versions in this module Expand all Collapse all v0 v0.1.0 Dec 6, 2025 Changes in this version + type Consumer interface + Start func(ctx context.Context) error + Stop func(ctx context.Context) error + type Handler interface + Handle func(ctx context.Context, msg Message) error + type Message struct + Key []byte + Timestamp time.Time + Topic string + Value []byte + type Producer interface + Close func() error + Publish func(ctx context.Context, topic string, key []byte, value []byte) error + PublishBatch func(ctx context.Context, topic string, messages []Message) error