You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
591 B
21 lines
591 B
using InitQ.Abstractions;
|
|
|
|
namespace Tiobon.Core.Extensions.Redis;
|
|
|
|
public class RedisSubscribe : IRedisSubscribe
|
|
{
|
|
//private readonly ITiobonArticleServices _TiobonArticleServices;
|
|
|
|
//public RedisSubscribe(ITiobonArticleServices TiobonArticleServices)
|
|
//{
|
|
// _TiobonArticleServices = TiobonArticleServices;
|
|
//}
|
|
|
|
//[Subscribe(RedisMqKey.Loging)]
|
|
//private async Task SubRedisLoging(string msg)
|
|
//{
|
|
// Console.WriteLine($"订阅者 1 从 队列{RedisMqKey.Loging} 消费到/接受到 消息:{msg}");
|
|
|
|
// await Task.CompletedTask;
|
|
//}
|
|
}
|
|
|