namespace Tapeti.Flow
{
///
/// Key names as used in the message context store. For internal use.
///
public static class ContextItems
{
///
/// Key given to the FlowContext object as stored in the message context.
///
public const string FlowContext = "Tapeti.Flow.FlowContext";
///
/// 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.
///
public const string FlowIsConverging = "Tapeti.Flow.IsConverging";
}
}