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

            _storage.Store(log);
        }
Beispiel #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);
        }
Beispiel #5
0
 public DiagnosticPartialFactory(IChainExecutionLog log, PartialFactory factory)
 {
     _log     = log;
     _factory = factory;
 }
Beispiel #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;
 }
Beispiel #9
0
 public void Record(IChainExecutionLog log, Envelope envelope)
 {
     // no-op
 }
 public void Record(IChainExecutionLog log, IDictionary<string, object> http)
 {
     // no-op
 }
Beispiel #11
0
 public ChainExecutionListener(IChainExecutionLog trace)
 {
     _trace = trace;
 }
Beispiel #12
0
 public BehaviorTracer(BehaviorNode node, IChainExecutionLog log)
 {
     _node = node;
     _log  = log;
 }
Beispiel #13
0
 public void Record(IChainExecutionLog log, IDictionary <string, object> http)
 {
     // no-op
 }
Beispiel #14
0
 public PartialLoggingBehavior(IChainExecutionLog log, BehaviorChain chain, IActionBehavior inner)
 {
     _log   = log;
     _chain = chain;
     Inner  = inner;
 }
 public ProductionModeTraceListener(IChainExecutionLog trace)
 {
     _trace = trace;
 }
 public ChainExecutionListener(IChainExecutionLog trace)
 {
     _trace = trace;
 }
Beispiel #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);
 }
 public void Record(IChainExecutionLog log, Envelope envelope)
 {
     // no-op
 }
Beispiel #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);
 }