Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
LockInfo.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Net;
4
using
Waher.Events
;
5
6
namespace
Waher.Networking.Cluster
7
{
8
internal
class
LockInfo
9
{
10
public
string
Resource;
11
public
bool
Locked;
12
public
LinkedList<LockInfoRec> Queue =
new
LinkedList<LockInfoRec>();
13
}
14
15
internal
class
LockInfoRec
16
{
17
public
LockInfo Info;
18
public
DateTime Timeout;
19
public
EventHandlerAsync<ClusterResourceLockEventArgs> Callback;
20
public
IPEndPoint LockedBy;
21
public
object
State;
22
public
bool
TimeoutScheduled =
false
;
23
}
24
}
Waher.Events
Definition:
ConsoleEventSink.cs:8
Waher.Networking.Cluster
Definition:
Program.cs:9
IoTGateway
Networking
Waher.Networking.Cluster
LockInfo.cs
Generated by
1.9.5