Exemplo n.º 1
0
        public void Record(IChainExecutionLog log, IDictionary <string, object> http)
        {
            log.RecordHeaders(http);
            log.RecordBody(http);

            _storage.Store(log);
        }
Exemplo n.º 2
0
        public void Record(IChainExecutionLog log, Envelope envelope)
        {
            log.RecordHeaders(envelope);
            log.RecordBody(envelope);

            _storage.Store(log);
        }
        public void Record(IChainExecutionLog log, Envelope envelope)
        {
            log.RecordHeaders(envelope);
            log.RecordBody(envelope);

            _storage.Store(log);
        }
        public void Record(IChainExecutionLog log, IDictionary<string, object> http)
        {
            log.RecordHeaders(http);
            log.RecordBody(http);

            _storage.Store(log);
        }
Exemplo n.º 5
0
 public DiagnosticPartialFactory(IChainExecutionLog log, PartialFactory factory)
 {
     _log     = log;
     _factory = factory;
 }
Exemplo n.º 6
0
 public BehaviorTracer(BehaviorNode node, IChainExecutionLog log)
 {
     _node = node;
     _log = log;
 }
 public PartialLoggingBehavior(IChainExecutionLog log, BehaviorChain chain, IActionBehavior inner) 
 {
     _log = log;
     _chain = chain;
     Inner = inner;
 }
 public DiagnosticPartialFactory(IChainExecutionLog log, PartialFactory factory)
 {
     _log = log;
     _factory = factory;
 }
Exemplo n.º 9
0
 public void Record(IChainExecutionLog log, Envelope envelope)
 {
     // no-op
 }
Exemplo n.º 10
0
 public void Record(IChainExecutionLog log, IDictionary<string, object> http)
 {
     // no-op
 }
Exemplo n.º 11
0
 public ChainExecutionListener(IChainExecutionLog trace)
 {
     _trace = trace;
 }
Exemplo n.º 12
0
 public BehaviorTracer(BehaviorNode node, IChainExecutionLog log)
 {
     _node = node;
     _log  = log;
 }
Exemplo n.º 13
0
 public void Record(IChainExecutionLog log, IDictionary <string, object> http)
 {
     // no-op
 }
Exemplo n.º 14
0
 public PartialLoggingBehavior(IChainExecutionLog log, BehaviorChain chain, IActionBehavior inner)
 {
     _log   = log;
     _chain = chain;
     Inner  = inner;
 }
 public ProductionModeTraceListener(IChainExecutionLog trace)
 {
     _trace = trace;
 }
Exemplo n.º 16
0
 public ChainExecutionListener(IChainExecutionLog trace)
 {
     _trace = trace;
 }
Exemplo n.º 17
0
 public static void Log(this IDictionary <string, object> dict, IChainExecutionLog log)
 {
     dict.ResponseHeaders().AppendValue(REQUEST_ID, log.Id.ToString());
     dict.Set(LOG_KEY, log);
 }
Exemplo n.º 18
0
 public void Record(IChainExecutionLog log, Envelope envelope)
 {
     // no-op
 }
Exemplo n.º 19
0
 public void Store(IChainExecutionLog log)
 {
     _history.Store((ChainExecutionLog)log);
     _queue.Enqueue((ChainExecutionLog)log);
 }
 public ProductionModeTraceListener(IChainExecutionLog trace)
 {
     _trace = trace;
 }
 public void Store(IChainExecutionLog log)
 {
     _history.Store((ChainExecutionLog) log);
     _queue.Enqueue((ChainExecutionLog) log);
 }