Works, but slow for many connections

This commit is contained in:
2025-07-27 00:14:15 +03:00
parent be12f1da65
commit bb3c4887df
24 changed files with 209 additions and 130 deletions
+3 -3
View File
@@ -4,7 +4,7 @@ namespace mROA.Implementation
{
public interface ICallRequest
{
Guid Id { get; }
RequestId Id { get; }
int CommandId { get; }
ComplexObjectIdentifier ObjectId { get; }
object?[]? Parameters { get; }
@@ -12,7 +12,7 @@ namespace mROA.Implementation
public struct DefaultCallRequest : ICallRequest
{
public Guid Id { get; set; }
public RequestId Id { get; set; }
public int CommandId { get; set; }
public ComplexObjectIdentifier ObjectId { get; set; }
@@ -26,7 +26,7 @@ namespace mROA.Implementation
public class CancelRequest : ICallRequest
{
public Guid Id { get; set; }
public RequestId Id { get; set; }
public int CommandId { get; set; } = -2;
public ComplexObjectIdentifier ObjectId { get; set; } = ComplexObjectIdentifier.Null;
public object?[]? Parameters { get; set; } = null;