Revisions

This commit is contained in:
2026-08-09 03:54:28 +03:00
parent 2028db671f
commit 3b55d8d2f8
37 changed files with 1743 additions and 230 deletions
@@ -183,12 +183,13 @@ namespace Esiur.Tests.RPC.EsiurServer
get => (object)_properties[1];
set => SetResourceProperty(1, value);
}
protected override void _EmitEventByIndex(byte index, object args)
protected override void _EmitEventByIndex(byte index, object args, ResourceCursor cursor, DateTime recordedAt)
{
switch (index)
{
case 0: MessageUpdated?.Invoke((byte[])args); break;
}
base._EmitEventByIndex(index, args, cursor, recordedAt);
}
[Export] public event ResourceEventHandler<byte[]> MessageUpdated;