You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Network/Contract/IExClient.cs

30 lines
705 B

using System;
using System.Net;
using ZeroLevel.Models;
namespace ZeroLevel.Services.Network
{
public interface IExClient
: IDisposable
{
event Action Connected;
void ForceConnect();
ZTransportStatus Status { get; }
IPEndPoint Endpoint { get; }
InvokeResult Send<T>(T obj);
InvokeResult Send<T>(string inbox, T obj);
InvokeResult Request<Treq, Tresp>(Treq obj, Action<Tresp> callback);
InvokeResult Request<Treq, Tresp>(string inbox, Treq obj, Action<Tresp> callback);
InvokeResult Request<Tresp>(Action<Tresp> callback);
InvokeResult Request<Tresp>(string inbox, Action<Tresp> callback);
}
}

Powered by TurnKey Linux.