Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ShuttingDown.cs
1using System;
2using System.Net;
3using System.Threading.Tasks;
4
6{
12 {
21 public async Task<bool> MessageReceived(ClusterEndpoint Endpoint, IPEndPoint RemoteEndpoint)
22 {
23 await Endpoint.EndpointShutDown(RemoteEndpoint);
24 return true;
25 }
26 }
27}
Represents one endpoint (or participant) in the network cluster.
Message sent when an endpoint is shut down, to let the other endpoints know the current endpoint is n...
Definition: ShuttingDown.cs:12
async Task< bool > MessageReceived(ClusterEndpoint Endpoint, IPEndPoint RemoteEndpoint)
Message sent when an endpoint is shut down, to let the other endpoints know the current endpoint is n...
Definition: ShuttingDown.cs:21
Interface for cluster messages.