2017-01-31 11:01:08 +00:00
|
|
|
|
namespace Tapeti.Flow
|
|
|
|
|
{
|
2019-08-14 18:48:40 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Key names as used in the message context store. For internal use.
|
|
|
|
|
/// </summary>
|
2017-01-31 11:01:08 +00:00
|
|
|
|
public static class ContextItems
|
|
|
|
|
{
|
2019-08-14 18:48:40 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Key given to the FlowContext object as stored in the message context.
|
|
|
|
|
/// </summary>
|
2017-01-31 11:01:08 +00:00
|
|
|
|
public const string FlowContext = "Tapeti.Flow.FlowContext";
|
2020-01-20 15:47:59 +00:00
|
|
|
|
|
|
|
|
|
/// <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 const string FlowIsConverging = "Tapeti.Flow.IsConverging";
|
2017-01-31 11:01:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|