C2R_PingHandler.cs 309 B

123456789101112131415
  1. using System;
  2. using Model;
  3. namespace Hotfix
  4. {
  5. [MessageHandler(AppType.Realm)]
  6. public class C2R_PingHandler : AMRpcHandler<C2R_Ping, R2C_Ping>
  7. {
  8. protected override void Run(Session session, C2R_Ping message, Action<R2C_Ping> reply)
  9. {
  10. R2C_Ping r2CPing = new R2C_Ping();
  11. reply(r2CPing);
  12. }
  13. }
  14. }