using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SuperSocket.SocketBase.Protocol;
namespace SuperSocket.SocketBase
{
///
/// Request handler
///
/// The type of the app session.
/// The type of the request info.
/// The session.
/// The request info.
public delegate void RequestHandler(TAppSession session, TRequestInfo requestInfo)
where TAppSession : IAppSession, IAppSession, new()
where TRequestInfo : IRequestInfo;
}