22 lines
419 B
C#
22 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JiShe.CollectBus.Kafka.Internal
|
|
{
|
|
public interface ISubscribeAck
|
|
{
|
|
/// <summary>
|
|
/// 是否成功标记
|
|
/// </summary>
|
|
bool Ack { get; set; }
|
|
|
|
/// <summary>
|
|
/// 消息
|
|
/// </summary>
|
|
string? Msg { get; set; }
|
|
}
|
|
}
|