Creates an AMQP consumer, presented as a reactive streams {@link org.reactivestreams.Publisher Publisher}. Messages will be automatically accepted when the {@link org.reactivestreams.Subscriber#onNext(Object) Subscriber#onNext(Object)} method returns. If you require more control over when the message is accepted, you should use {@link #createDeliveryConsumer(ProtonConnection, String)} instead.
Creates an AMQP consumer, presented as a reactive streams {@link org.reactivestreams.Publisher Publisher}. Messages will be automatically accepted when the {@link org.reactivestreams.Subscriber#onNext(Object) Subscriber#onNext(Object)} method returns. If you require more control over when the message is accepted, you should use {@link #createDeliveryConsumer(ProtonConnection, String, ProtonPublisherOptions)} instead.
Creates an AMQP consumer, presented as a reactive streams {@link org.reactivestreams.Publisher Publisher}. Messages are carried by {@link Delivery} elements of the stream, which are used by the consuming application to explicitly acknowledge each message after processing it.
Creates an AMQP consumer, presented as a reactive streams {@link org.reactivestreams.Publisher Publisher}. Messages are carried by {@link Delivery} elements of the stream, which are used by the consuming application to explicitly acknowledge each message after processing it.
Creates an AMQP producer, presented as a reactive streams {@link org.reactivestreams.Subscriber Subscriber}. The status of the message delivery can not be tracked after send, if you need that ability use {@link ProtonStreams#createTrackerProducer(ProtonConnection, String, ProtonSubscriberOptions)}.
Creates an AMQP producer, presented as a reactive streams {@link org.reactivestreams.Subscriber Subscriber}. The status of the message delivery can not be tracked after send, if you need that ability use {@link ProtonStreams#createTrackerProducer(ProtonConnection, String)}.
Creates an AMQP producer, presented as a reactive streams {@link org.reactivestreams.Subscriber Subscriber}.
Creates an AMQP producer, presented as a reactive streams {@link org.reactivestreams.Subscriber Subscriber}.