C2M_TestActorRequestHandler.cs 402 B

12345678910111213141516
  1. using System;
  2. namespace ET
  3. {
  4. [ActorMessageHandler]
  5. public class C2M_TestActorRequestHandler : AMActorLocationRpcHandler<Unit, C2M_TestActorRequest, M2C_TestActorResponse>
  6. {
  7. protected override async ETTask Run(Unit unit, C2M_TestActorRequest message, M2C_TestActorResponse response, Action reply)
  8. {
  9. response.Info = "actor rpc response";
  10. reply();
  11. await ETTask.CompletedTask;
  12. }
  13. }
  14. }