Class CustomExchange

  • All Implemented Interfaces:
    Declarable, Exchange

    public class CustomExchange
    extends AbstractExchange
    Simple container collecting information to describe a custom exchange. Custom exchange types are allowed by the AMQP specification, and their names should start with "x-" (but this is not enforced here). Used in conjunction with administrative operations.
    See Also:
    AmqpAdmin
    • Constructor Detail

      • CustomExchange

        public CustomExchange​(java.lang.String name,
                              java.lang.String type)
      • CustomExchange

        public CustomExchange​(java.lang.String name,
                              java.lang.String type,
                              boolean durable,
                              boolean autoDelete)
      • CustomExchange

        public CustomExchange​(java.lang.String name,
                              java.lang.String type,
                              boolean durable,
                              boolean autoDelete,
                              java.util.Map<java.lang.String,​java.lang.Object> arguments)
    • Method Detail

      • getType

        public final java.lang.String getType()
        Description copied from interface: Exchange
        The type of the exchange. See ExchangeTypes for some well-known examples.
        Specified by:
        getType in interface Exchange
        Specified by:
        getType in class AbstractExchange
        Returns:
        the type of the exchange.