| 12345678910111213141516 |
- using System;
- using System.Threading.Tasks;
- using Model;
- namespace Hotfix
- {
- [ActorMessageHandler(AppType.Map)]
- public class Actor_TestRequestHandler : AMActorRpcHandler<Unit, Actor_TestRequest, Actor_TestResponse>
- {
- protected override async Task Run(Unit unit, Actor_TestRequest message, Action<Actor_TestResponse> reply)
- {
- await Task.CompletedTask;
- reply(new Actor_TestResponse() {response = "response actor rpc"});
- }
- }
- }
|