using Confluent.Kafka; namespace TelpoPush.WanJiaAn.Worker.Service.Mq { public interface IKafkaService { Task SubscribeAsync(Action<string, string, Headers> messageFunc, CancellationToken cancellationToken); } }