Beispiel #1
0
 private static void TransactionCreatedCallback(RpcServerTransaction tx)
 {
     if (tx.Bypassed)
     {
         return;
     }
     _dispatcher.ProcessTransaction(tx);
 }
Beispiel #2
0
        internal RpcServerContext(RpcServerTransaction trans)
        {
            _request     = trans.Request;
            _trans       = trans;
            _hasReturned = 0;

            _observer = RpcObserverManager.GetServerItem(_request.Service, _request.Method, _request.FromService, _request.FromComputer);
            _watch    = new Stopwatch();
            _watch.Start();
        }
Beispiel #3
0
 static void channel_TransactionCreated(RpcServerTransaction obj)
 {
     //obj.Bypass();
     //obj.SendResponse();
 }