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); }
public ProductionModeTraceListener(IChainExecutionLog trace) { _trace = trace; }
public void Record(IChainExecutionLog log, IDictionary<string, object> http) { // no-op }
public void Record(IChainExecutionLog log, Envelope envelope) { // no-op }
public ChainExecutionListener(IChainExecutionLog trace) { _trace = trace; }
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; }
public void Store(IChainExecutionLog log) { _history.Store((ChainExecutionLog) log); _queue.Enqueue((ChainExecutionLog) log); }