blob: 4dbbeb2ef18d7bbf5309b7ab37a9241dc064b446 [file] [log] [blame]
using BaSys40.Utils.ResultHandling;
namespace oneM2MClient.Client
{
public interface IClient
{
bool IsAlive { get; }
ClientFactory.Protocol Protocol { get; }
void Start();
void Stop();
Result<Response> Send(Request request);
}
}