Mark van Renswoude
be576a2409
Refactored IControllerMessageContext into context payloads to get access to it in the exception handler
34 lines
912 B
C#
34 lines
912 B
C#
using System;
|
|
using Tapeti.Config;
|
|
using Tapeti.Flow.Default;
|
|
|
|
namespace Tapeti.Flow
|
|
{
|
|
/// <summary>
|
|
/// Contains information about the flow for the current message. For internal use.
|
|
/// </summary>
|
|
internal class FlowMessageContextPayload : IMessageContextPayload, IDisposable
|
|
{
|
|
public FlowContext FlowContext { get; }
|
|
|
|
/// <summary>
|
|
/// Indicates if the current message handler is the last one to be called before a
|
|
/// parallel flow is done and the convergeMethod will be called.
|
|
/// Temporarily disables storing the flow state.
|
|
/// </summary>
|
|
public bool FlowIsConverging { get; set; }
|
|
|
|
|
|
public FlowMessageContextPayload(FlowContext flowContext)
|
|
{
|
|
FlowContext = flowContext;
|
|
}
|
|
|
|
|
|
public void Dispose()
|
|
{
|
|
FlowContext?.Dispose();
|
|
}
|
|
}
|
|
}
|