Exemplo n.º 1
0
        ///<summary>
        /// Asynchronous invoker for  'Azos.Sky.Contracts.IProcessController.Spawn'.
        /// This is a two-way call per contract specification, meaning - the server sends the result back either
        ///  returning no exception or WrappedExceptionData instance.
        /// CallSlot is returned that can be queried for CallStatus, ResponseMsg and result.
        ///</summary>
        public CallSlot Async_Spawn(@Azos.@Sky.@Workers.@ProcessFrame @frame)
        {
            var request = new RequestAnyMsg(s_ts_CONTRACT, @s_ms_Spawn_0, false, RemoteInstance, new object[] { @frame });

            return(DispatchCall(request));
        }
Exemplo n.º 2
0
        ///<summary>
        /// Synchronous invoker for  'Azos.Sky.Contracts.IProcessController.Spawn'.
        /// This is a two-way call per contract specification, meaning - the server sends the result back either
        ///  returning no exception or WrappedExceptionData instance.
        /// ClientCallException is thrown if the call could not be placed in the outgoing queue.
        /// RemoteException is thrown if the server generated exception during method execution.
        ///</summary>
        public void @Spawn(@Azos.@Sky.@Workers.@ProcessFrame @frame)
        {
            var call = Async_Spawn(@frame);

            call.CheckVoidValue();
        }