C2R_PingHandler.cs 281 B

123456789101112131415
  1. using System;
  2. namespace ET
  3. {
  4. [MessageHandler]
  5. public class C2R_PingHandler : AMRpcHandler<C2R_Ping, R2C_Ping>
  6. {
  7. protected override async ETTask Run(Session session, C2R_Ping request, R2C_Ping response, Action reply)
  8. {
  9. reply();
  10. await ETTask.CompletedTask;
  11. }
  12. }
  13. }