using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.Kafka.AdminClient { public interface IAdminClientService { Task CreateTopicAsync(string topic, int numPartitions, short replicationFactor); Task DeleteTopicAsync(string topic); Task> ListTopicsAsync(); Task TopicExistsAsync(string topic); } }