Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IEndpoint.cs
1using System;
2using System.Threading.Tasks;
3
5{
9 public interface IEndpoint : IDisposable, ISender, IRecipient, ICommunicationLayer
10 {
14 string Type
15 {
16 get;
17 }
18
22 [Obsolete("Use DisposeAsync instead.")]
23 new void Dispose();
24
29 }
30}
Interface for observable classes implementing communication protocols.
Interface for XMPP endpoints
Definition: IEndpoint.cs:10
Task DisposeAsync()
Disposes the connection
string Type
Type of endpoint
Definition: IEndpoint.cs:15
new void Dispose()
Disposes the connection
Interface for recipients of stanzas.
Definition: IRecipient.cs:9
Interface for senders of stanzas.
Definition: ISender.cs:10