using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bro.Common.PubSub
{
///
/// 订阅者
///
public interface ISubscriber
{
///
/// 订阅的名称
///
string SubscriberName { get; set; }
///
/// 响应发布的方法
///
Func SubMethod { get; set; }
}
}