2023-08-09 14:23:41 +00:00
|
|
|
|
using MassTransit;
|
2023-08-10 08:47:35 +00:00
|
|
|
|
using Server.Packets;
|
|
|
|
|
using Server.Services;
|
2023-08-09 14:23:41 +00:00
|
|
|
|
|
2023-08-10 08:47:35 +00:00
|
|
|
|
namespace Server.Consumers;
|
2023-08-09 14:23:41 +00:00
|
|
|
|
|
2023-08-09 18:14:14 +00:00
|
|
|
|
public class PacketConsumer : IConsumer<RawPacket>
|
2023-08-09 14:23:41 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly PacketDistributorService _distributorService;
|
|
|
|
|
|
|
|
|
|
public PacketConsumer(PacketDistributorService distributorService)
|
|
|
|
|
{
|
|
|
|
|
_distributorService = distributorService;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-09 18:14:14 +00:00
|
|
|
|
public Task Consume(ConsumeContext<RawPacket> context)
|
2023-08-09 14:23:41 +00:00
|
|
|
|
{
|
2023-08-09 18:14:14 +00:00
|
|
|
|
_distributorService.AddPacket(context.Message);
|
|
|
|
|
return Task.CompletedTask;
|
2023-08-09 14:23:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|