using System; namespace Tapeti.Annotations { /// /// /// Indicates that the method only handles response messages which are sent directly /// to the queue. No binding will be created. /// [AttributeUsage(AttributeTargets.Method)] public class ResponseHandlerAttribute : Attribute { } }