12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using SuperSocket.SocketBase.Protocol;
- namespace SuperSocket.SocketBase
- {
-
-
-
-
-
-
-
- public delegate void RequestHandler<TAppSession, TRequestInfo>(TAppSession session, TRequestInfo requestInfo)
- where TAppSession : IAppSession, IAppSession<TAppSession, TRequestInfo>, new()
- where TRequestInfo : IRequestInfo;
- }
|