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.
 
 
 

15 lines
384 B

using InitQ.Abstractions;
using InitQ.Attributes;
namespace Tiobon.Core.Extensions.Redis;
public class RedisSubscribe2 : IRedisSubscribe
{
[Subscribe(RedisMqKey.Loging)]
private async Task SubRedisLoging(string msg)
{
Console.WriteLine($"订阅者 2 从 队列{RedisMqKey.Loging} 消费到/接受到 消息:{msg}");
await Task.CompletedTask;
}
}