Skip to content

Instantly share code, notes, and snippets.

@Abdulsametileri
Last active October 28, 2022 21:26
Show Gist options
  • Save Abdulsametileri/3c903437677a771845cdc70616d5e8eb to your computer and use it in GitHub Desktop.
Save Abdulsametileri/3c903437677a771845cdc70616d5e8eb to your computer and use it in GitHub Desktop.
func main() {
// ..
var consumeFn kafka.ConsumeFn = func(message kafka.Message) error {
fmt.Printf("consumer > Message received: %s\n", string(message.Value))
return nil
}
c := cronsumer.New(kafkaConfig, consumeFn)
c.Run()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment