fix: Replaces throttlers and packet callbacks with function pointers (#1063)
Replaces multi-cast delegates with function pointers to gain 25% in performance and lower allocations.
This commit is contained in:
parent
b779d7737f
commit
f24b98f8e2
31 changed files with 189 additions and 172 deletions
|
|
@ -15,9 +15,10 @@
|
|||
|
||||
namespace Server.Network;
|
||||
|
||||
public class ContainerGridPacketHandler : PacketHandler
|
||||
public unsafe class ContainerGridPacketHandler : PacketHandler
|
||||
{
|
||||
public ContainerGridPacketHandler(int packetID, int length, bool ingame, OnPacketReceive onReceive)
|
||||
public ContainerGridPacketHandler(int packetID, int length, bool ingame,
|
||||
delegate*<NetState, CircularBufferReader, int, void> onReceive)
|
||||
: base(packetID, length, ingame, onReceive)
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue