Exemplo n.º 1
0
        ///<summary>
        /// Synchronous invoker for  'Agni.Contracts.ILocker.ExecuteLockTransaction'.
        /// This is a two-way call per contract specification, meaning - the server sends the result back either
        ///  returning '@Agni.@Locking.@LockTransactionResult' 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 @Agni.@Locking.@LockTransactionResult @ExecuteLockTransaction(@Agni.@Locking.@Server.@LockSessionData @session, @Agni.@Locking.@LockTransaction @transaction)
        {
            var call = Async_ExecuteLockTransaction(@session, @transaction);

            return(call.GetValue <@Agni.@Locking.@LockTransactionResult>());
        }
Exemplo n.º 2
0
        ///<summary>
        /// Asynchronous invoker for  'Agni.Contracts.ILocker.ExecuteLockTransaction'.
        /// 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_ExecuteLockTransaction(@Agni.@Locking.@Server.@LockSessionData @session, @Agni.@Locking.@LockTransaction @transaction)
        {
            var request = new RequestAnyMsg(s_ts_CONTRACT, @s_ms_ExecuteLockTransaction_0, false, RemoteInstance, new object[] { @session, @transaction });

            return(DispatchCall(request));
        }