AmqpClient.createReceiver

Creates a receiver used to consume messages from the given address. The receiver has no handler and won't start receiving messages until a handler is explicitly configured. This method avoids having to connect explicitly. You can retrieve the connection using {@link AmqpReceiver#connection()}.

@param address The source address to attach the consumer to, must not be {@code null} @param completionHandler the handler called with the receiver. The receiver has been opened. @return the client.

  1. AmqpClient createReceiver(string address, Handler!AmqpReceiver completionHandler)
    interface AmqpClient
    createReceiver
  2. AmqpClient createReceiver(string address, AmqpReceiverOptions receiverOptions, Handler!AmqpReceiver completionHandler)

Meta