using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SuperSocket.SocketBase.Protocol { /// /// Provide the initializing interface for ReceiveFilter /// public interface IReceiveFilterInitializer { /// /// Initializes the ReceiveFilter with the specified appServer and appSession /// /// The app server. /// The session. void Initialize(IAppServer appServer, IAppSession session); } }