Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MahdiKarimipour/0ed6095603f30ba222af053f1d2bc310 to your computer and use it in GitHub Desktop.
Save MahdiKarimipour/0ed6095603f30ba222af053f1d2bc310 to your computer and use it in GitHub Desktop.
Kafka Service Injection for Event Driven Architecture
services.AddTransient<IKafkaService>(x =>
new KafkaService(
appSettings.KafkaSettings.Server,
appSecrets.KafkaSaslKey,
appSecrets.KafkaSaslSecret));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment