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