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