2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-04-29 06:48:41 +00:00
This commit is contained in:
2026-04-04 23:54:59 +03:00
parent 5b0fba89a4
commit 44983d7784
17 changed files with 181 additions and 66 deletions
@@ -32,11 +32,13 @@ var latencyLock = new object();
var proxies = new dynamic[resourceCount];
var sw = Stopwatch.StartNew();
var wh = new Warehouse();
try
{
for (int i = 0; i < resourceCount; i++)
{
proxies[i] = await Warehouse.Get<IResource>($"iip://{host}:{port}/sys/sensor_{i}");
proxies[i] = await wh.Get<IResource>($"iip://{host}:{port}/sys/sensor_{i}");
// Subscribe to property change notifications via the Esiur event model
double lastValue = (double)proxies[i].Value;