Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EndpointStatus.cs
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Net;
4
5
namespace
Waher.Networking.Cluster
6
{
10
public
class
EndpointStatus
11
{
12
private
readonly IPEndPoint endpoint;
13
private
readonly
object
status;
14
15
internal
EndpointStatus
(IPEndPoint
Endpoint
,
object
Status
)
16
{
17
this.endpoint =
Endpoint
;
18
this.status =
Status
;
19
}
20
24
public
IPEndPoint
Endpoint
=> this.endpoint;
25
29
public
object
Status
=> this.status;
30
}
31
}
Waher.Networking.Cluster.EndpointStatus
Contains information about one of the endpoints in the cluster.
Definition:
EndpointStatus.cs:11
Waher.Networking.Cluster.EndpointStatus.Endpoint
IPEndPoint Endpoint
Remote endpoint
Definition:
EndpointStatus.cs:24
Waher.Networking.Cluster.EndpointStatus.Status
object Status
Endpoint status.
Definition:
EndpointStatus.cs:29
Waher.Networking.Cluster
Definition:
Program.cs:9
IoTGateway
Networking
Waher.Networking.Cluster
EndpointStatus.cs
Generated by
1.9.5