2017-01-31 12:01:08 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Tapeti.Flow.Annotations
|
|
|
|
|
{
|
2019-08-14 20:48:40 +02: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 22:05:01 +01:00
|
|
|
|
[AttributeUsage(AttributeTargets.Method)]
|
2017-01-31 12:01:08 +01:00
|
|
|
|
public class ContinuationAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|