clean up dead code

This commit is contained in:
chrislu
2023-12-31 13:25:33 -08:00
parent 2845230329
commit 458ddbf919
6 changed files with 77 additions and 164 deletions

View File

@@ -27,7 +27,7 @@ type ProcessorConfiguration struct {
ConcurrentPartitionLimit int // how many partitions to process concurrently
}
type OnEachMessageFunc func(key, value []byte) (shouldContinue bool)
type OnEachMessageFunc func(key, value []byte) (shouldContinue bool, err error)
type OnCompletionFunc func()
type TopicSubscriber struct {