Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
EndpointAcknowledgement.cs
1using System;
2using System.Collections.Generic;
3using System.Net;
4
6{
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}
Contains information about one of the endpoints in the cluster.