Example #1
0
        public async Task <RemoveClientActorReq.Callback> RemoveClientActorAsync(global::System.UInt64 actorId, global::Fenix.Common.DisconnectReason reason, global::System.Action <global::Fenix.Common.DefaultErrCode> callback = null)
#endif
        {
#if FENIX_CODEGEN
#if !RUNTIME
            var t = new TaskCompletionSource <dynamic>();
#else
            var t = new TaskCompletionSource <RemoveClientActorReq.Callback>();
#endif
#else
            var t        = new TaskCompletionSource <RemoveClientActorReq.Callback>();
            var toHostId = Global.IdManager.GetHostIdByActorId(this.toActorId, this.isClient);
            if (this.FromHostId == toHostId)
            {
                global::System.Action <global::Fenix.Common.DefaultErrCode> _cb = (code) =>
                {
                    var cbMsg = new RemoveClientActorReq.Callback();
                    cbMsg.code = code;
                    callback?.Invoke(cbMsg.code);
                    t.TrySetResult(cbMsg);
                };
                var protoCode = OpCode.REMOVE_CLIENT_ACTOR_REQ;
                if (Math.Abs(protoCode) < OpCode.CALL_ACTOR_METHOD)
                {
                    var peer    = Global.NetManager.GetRemotePeerById(this.FromHostId, this.NetType);
                    var context = new RpcContext(null, peer);
                    Global.Host.CallMethodWithParams(protoCode, new object[] { actorId, reason, _cb, context });
                }
                else
                {
                    Global.Host.GetActor(this.toActorId).CallMethodWithParams(protoCode, new object[] { actorId, reason, _cb });
                }
            }
            else
            {
                Action <RemoveClientActorReq.Callback> _cb = (cbMsg) =>
                {
                    callback?.Invoke(cbMsg.code);
                    t.TrySetResult(cbMsg);
                };
                await Task.Run(() => {
                    var msg = new RemoveClientActorReq()
                    {
                        actorId = actorId,
                        reason  = reason
                    };
                    var cb = new Action <byte[]>((cbData) => {
                        var cbMsg = cbData == null ? new RemoveClientActorReq.Callback() : global::Fenix.Common.Utils.RpcUtil.Deserialize <RemoveClientActorReq.Callback>(cbData);
                        _cb?.Invoke(cbMsg);
                    });
                    this.CallRemoteMethod(OpCode.REMOVE_CLIENT_ACTOR_REQ, msg, cb);
                });
            }
#endif
            return(await t.Task);
        }
Example #2
0
        public void SERVER_API_remove_client_actor(IMessage msg, Action <IMessage> cb, RpcContext context)
        {
            var _msg = (RemoveClientActorReq)msg;

            this.RemoveClientActor(_msg.actorId, _msg.reason, (code) =>
            {
                var cbMsg  = new RemoveClientActorReq.Callback();
                cbMsg.code = code;
                cb.Invoke(cbMsg);
            }, context);
        }
Example #3
0
        public void SERVER_API__Fenix__Host__remove_client_actor(IMessage msg, Action <IMessage> cb, RpcContext context)
        {
#if ENABLE_IL2CPP || !DEBUG || RUNTIME
            var _msg = (RemoveClientActorReq)msg;
            this.RemoveClientActor(_msg.actorId, _msg.reason, (code) =>
            {
                var cbMsg  = new RemoveClientActorReq.Callback();
                cbMsg.code = code;
                cb.Invoke(cbMsg);
            }, context);
#else
            dynamic _msg = msg;
            self.RemoveClientActor(_msg.actorId, _msg.reason, (global::System.Action <global::Fenix.Common.DefaultErrCode>)((code) =>
            {
                dynamic cbMsg = new RemoveClientActorReq.Callback();
                cbMsg.code    = code;
                cb.Invoke(cbMsg);
            }), context);
#endif
        }