using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Threading.Tasks;
namespace Model
{
public enum NetworkProtocol
{
TCP,
UDP
}
public abstract class AService: IDisposable
{
///
/// 将函数调用加入IService线程
///
///
public abstract void Add(Action action);
public abstract AChannel GetChannel(long id);
public abstract Task AcceptChannel();
public abstract AChannel ConnectChannel(string host, int port);
public abstract void Remove(long channelId);
public abstract void Update();
public abstract void Dispose();
}
}