19 lines
421 B
C#
Raw Normal View History

2025-04-15 11:15:22 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.Kafka.Internal
2025-04-15 11:15:22 +08:00
{
/// <summary>
/// Kafka订阅者
/// <para>
/// 订阅者需要继承此接口并需要依赖注入,并使用<see cref="KafkaSubscribeAttribute"/>标记
/// </para>
/// </summary>
2025-04-15 11:15:22 +08:00
public interface IKafkaSubscribe
{
}
}