Class AmqpAddress


  • public final class AmqpAddress
    extends Object
    This represents amqp address information. This will be used in populating information like 'To', 'ReplyTo' etc.

    Create and retrieve address

     AmqpAddress amqpAddress = new AmqpAddress("my-address");
     // Retrieve Adderss
     String address = amqpAddress.toString();
     System.out.println("Address " + address);
     
    See Also:
    Address type Format.