IReceiveFilterInitializer.cs 607 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SuperSocket.SocketBase.Protocol
  6. {
  7. /// <summary>
  8. /// Provide the initializing interface for ReceiveFilter
  9. /// </summary>
  10. public interface IReceiveFilterInitializer
  11. {
  12. /// <summary>
  13. /// Initializes the ReceiveFilter with the specified appServer and appSession
  14. /// </summary>
  15. /// <param name="appServer">The app server.</param>
  16. /// <param name="session">The session.</param>
  17. void Initialize(IAppServer appServer, IAppSession session);
  18. }
  19. }