Timothy Schenk
6d9a72ded4
Some checks failed
Build, Package and Push Images / preprocess (push) Successful in 2s
Build, Package and Push Images / build (push) Successful in 25s
Build, Package and Push Images / sbom-scan (push) Successful in 36s
Build, Package and Push Images / sonarqube (push) Failing after 1m36s
Build, Package and Push Images / container-build (push) Successful in 2m4s
Build, Package and Push Images / container-sbom-scan (push) Successful in 39s
23 lines
640 B
C#
23 lines
640 B
C#
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
using Continuity.AuthServer.Packets;
|
|
using Continuity.AuthServer.Services;
|
|
using MassTransit;
|
|
|
|
namespace Continuity.AuthServer.Consumers;
|
|
|
|
public class PacketConsumer : IConsumer<RawPacket>
|
|
{
|
|
private readonly PacketDistributorService _distributorService;
|
|
|
|
public PacketConsumer(PacketDistributorService distributorService)
|
|
{
|
|
_distributorService = distributorService;
|
|
}
|
|
|
|
public Task Consume(ConsumeContext<RawPacket> context)
|
|
{
|
|
_distributorService.AddPacket(context.Message);
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|