2017-01-31 11:01:08 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Tapeti.Flow.Annotations
|
|
|
|
|
{
|
2019-08-14 18:48:40 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Marks a message handler as a response message handler which continues a Tapeti Flow.
|
|
|
|
|
/// The method only receives direct messages, and does not create a routing key based binding to the queue.
|
|
|
|
|
/// </summary>
|
2017-02-15 21:05:01 +00:00
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
2017-01-31 11:01:08 +00:00
|
|
|
|
public class ContinuationAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|