добавлена асинхронность

This commit is contained in:
2025-02-03 10:42:47 +03:00
parent 1f2df53c12
commit b2f16b27f4
9 changed files with 49 additions and 32 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ public interface IInteractionModule
void SendTo(int clientId, byte[] message);
public interface IFrontendInteractionModule
{
public byte[] ReceiveMessage();
public Task<byte[]> ReceiveMessage();
public void PostMessage(byte[] message);
}
}