Class AmqpSender

  • All Implemented Interfaces:
    io.vertx.mutiny.core.streams.StreamBase, io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>

    public class AmqpSender
    extends Object
    implements io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
    AMQP Sender interface used to send messages.

    NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

    • Field Detail

      • __TYPE_ARG

        public static final io.smallrye.mutiny.vertx.TypeArg<AmqpSender> __TYPE_ARG
    • Constructor Detail

      • AmqpSender

        public AmqpSender​(io.vertx.amqp.AmqpSender delegate)
      • AmqpSender

        public AmqpSender​(Object delegate)
    • Method Detail

      • getDelegate

        public io.vertx.amqp.AmqpSender getDelegate()
        Specified by:
        getDelegate in interface io.vertx.mutiny.core.streams.StreamBase
        Specified by:
        getDelegate in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • toSubscriber

        @CheckReturnValue
        public io.smallrye.mutiny.vertx.WriteStreamSubscriber<AmqpMessage> toSubscriber()
      • write

        @CheckReturnValue
        public io.smallrye.mutiny.Uni<Void> write​(AmqpMessage arg0)
        Specified by:
        write in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • writeAndAwait

        public Void writeAndAwait​(AmqpMessage arg0)
        Specified by:
        writeAndAwait in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • writeAndForget

        public void writeAndForget​(AmqpMessage arg0)
        Specified by:
        writeAndForget in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • end

        @CheckReturnValue
        public io.smallrye.mutiny.Uni<Void> end()
        Specified by:
        end in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • endAndAwait

        public Void endAndAwait()
        Specified by:
        endAndAwait in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • endAndForget

        public void endAndForget()
        Specified by:
        endAndForget in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • end

        @CheckReturnValue
        public io.smallrye.mutiny.Uni<Void> end​(AmqpMessage data)
        Specified by:
        end in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • endAndAwait

        public Void endAndAwait​(AmqpMessage data)
        Specified by:
        endAndAwait in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • endAndForget

        public void endAndForget​(AmqpMessage data)
        Specified by:
        endAndForget in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • writeQueueFull

        public boolean writeQueueFull()
        Specified by:
        writeQueueFull in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • drainHandler

        public io.vertx.mutiny.core.streams.WriteStream<AmqpMessage> drainHandler​(Runnable arg0)
        Specified by:
        drainHandler in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • exceptionHandler

        public AmqpSender exceptionHandler​(Consumer<Throwable> handler)
        Specified by:
        exceptionHandler in interface io.vertx.mutiny.core.streams.StreamBase
        Specified by:
        exceptionHandler in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • setWriteQueueMaxSize

        public AmqpSender setWriteQueueMaxSize​(int maxSize)
        Specified by:
        setWriteQueueMaxSize in interface io.vertx.mutiny.core.streams.WriteStream<AmqpMessage>
      • send

        public AmqpSender send​(AmqpMessage message)
        Parameters:
        message - the message, must not be null
        Returns:
        the current sender
      • sendWithAck

        @CheckReturnValue
        public io.smallrye.mutiny.Uni<Void> sendWithAck​(AmqpMessage message)
        Sends an AMQP message and waits for an acknowledgement. The acknowledgement handler is called with an marked as failed if the message has been rejected or re-routed. If the message has been accepted, the handler is called with a success.

        Unlike the bare Vert.x variant, this method returns a Uni. Don't forget to subscribe on it to trigger the operation.

        Parameters:
        message - the message, must not be null
        Returns:
        the uni firing the result of the operation when completed, or a failure if the operation failed.
      • sendWithAckAndAwait

        public Void sendWithAckAndAwait​(AmqpMessage message)
        Blocking variant of sendWithAck(io.vertx.mutiny.amqp.AmqpMessage).

        This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).

        Parameters:
        message - the message, must not be null
        Returns:
        the Void instance produced by the operation.
      • close

        @CheckReturnValue
        public io.smallrye.mutiny.Uni<Void> close()
        Closes the sender.

        Unlike the bare Vert.x variant, this method returns a Uni. Don't forget to subscribe on it to trigger the operation.

        Returns:
        the uni firing the result of the operation when completed, or a failure if the operation failed.
      • closeAndAwait

        public Void closeAndAwait()
        Blocking variant of close().

        This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).

        Returns:
        the Void instance produced by the operation.
      • closeAndForget

        public void closeAndForget()
        Variant of close() that ignores the result of the operation.

        This method subscribes on the result of close(), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation from close() but you don't need to compose it with other operations.

      • address

        public String address()
        Returns:
        the configured address.
      • connection

        public AmqpConnection connection()
        Returns:
        the connection having created the sender.
      • remainingCredits

        public long remainingCredits()
        Returns:
        the remaining credit, 0 is none.
      • unwrap

        public io.vertx.proton.ProtonSender unwrap()
        Returns:
        the underlying ProtonSender.
      • newInstance

        public static AmqpSender newInstance​(io.vertx.amqp.AmqpSender arg)