BotSharp/src/Infrastructure/BotSharp.Abstraction/Infrastructures/Events/IEventSubscriber.cs

9 lines
287 B
C#
Raw Normal View History

2024-11-08 18:10:15 +00:00
namespace BotSharp.Abstraction.Infrastructures.Events;
public interface IEventSubscriber
{
Task SubscribeAsync(string channel, Func<string, string, Task> received);
2024-11-23 14:48:22 +00:00
Task SubscribeAsync(string channel, string group, bool priorityEnabled, Func<string, string, Task> received);
2024-11-08 18:10:15 +00:00
}