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
37 lines
1 KiB
C#
37 lines
1 KiB
C#
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
using System.Diagnostics;
|
|
using JetBrains.Annotations;
|
|
using NetCoreServer;
|
|
using Wonderking.Packets;
|
|
|
|
namespace Continuity.AuthServer.PacketHandlers;
|
|
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
|
|
public interface IPacketHandler<in T> : IPacketHandler where T : IPacket
|
|
{
|
|
[UsedImplicitly]
|
|
public Task HandleAsync(T packet, TcpSession session);
|
|
|
|
async Task<bool> IPacketHandler.TryHandleAsync(IPacket packet, TcpSession session)
|
|
{
|
|
if (packet is not T tPacket)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
using (var activity = new ActivitySource(nameof(Server)).StartActivity("HandleAsync"))
|
|
{
|
|
activity?.SetTag("Handler", this.ToString());
|
|
activity?.SetTag("PacketId", packet.ToString());
|
|
await HandleAsync(tPacket, session);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public interface IPacketHandler
|
|
{
|
|
Task<bool> TryHandleAsync(IPacket packet, TcpSession session);
|
|
}
|