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

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