You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
226B

  1. using Confluent.Kafka;
  2. namespace TelpoPush.Service.Mq.Kafka
  3. {
  4. public interface IKafkaService
  5. {
  6. Task SubscribeAsync(Action<string, string, Headers> messageFunc, CancellationToken cancellationToken);
  7. }
  8. }