Class AmqpReceiver
- All Implemented Interfaces:
MutinyDelegate,ReadStream<AmqpMessage>,StreamBase
original non Mutiny-ified interface using Vert.x codegen.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionAmqpReceiver(io.vertx.amqp.AmqpReceiver delegate) AmqpReceiver(Object delegate) -
Method Summary
Modifier and TypeMethodDescriptionaddress()io.smallrye.mutiny.Uni<Void>close()Closes the receiver.Blocking variant ofclose().voidVariant ofclose()that ignores the result of the operation.endHandler(Runnable endHandler) booleanexceptionHandler(Consumer<Throwable> handler) fetch(long amount) io.vertx.amqp.AmqpReceiverhandler(Consumer<AmqpMessage> handler) inthashCode()static AmqpReceivernewInstance(io.vertx.amqp.AmqpReceiver arg) pause()pipe()io.smallrye.mutiny.Uni<Void>pipeTo(WriteStream<AmqpMessage> dst) Pipe thisReadStreamto theWriteStream.Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).voidVariant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.resume()io.smallrye.mutiny.Multi<AmqpMessage>toMulti()toString()io.vertx.proton.ProtonReceiverunwrap()
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
AmqpReceiver
public AmqpReceiver(io.vertx.amqp.AmqpReceiver delegate) -
AmqpReceiver
-
-
Method Details
-
getDelegate
public io.vertx.amqp.AmqpReceiver getDelegate()- Specified by:
getDelegatein interfaceMutinyDelegate- Specified by:
getDelegatein interfaceReadStream<AmqpMessage>- Specified by:
getDelegatein interfaceStreamBase- Returns:
- the delegate used by this Mutiny object of generated type
-
toString
-
equals
-
hashCode
public int hashCode() -
pipe
- Specified by:
pipein interfaceReadStream<AmqpMessage>- Returns:
- a pipe
-
pipeTo
Description copied from interface:ReadStreamPipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
Once this stream has ended or failed, the write stream will be ended and the
handlerwill be called with the result.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Specified by:
pipeToin interfaceReadStream<AmqpMessage>- Parameters:
dst- the destination write stream- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
pipeToAndAwait
Description copied from interface:ReadStreamBlocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).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).
- Specified by:
pipeToAndAwaitin interfaceReadStream<AmqpMessage>- Parameters:
dst- the destination write stream- Returns:
- the Void instance produced by the operation.
-
pipeToAndForget
Description copied from interface:ReadStreamVariant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.This method subscribes on the result of
ReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)but you don't need to compose it with other operations.- Specified by:
pipeToAndForgetin interfaceReadStream<AmqpMessage>- Parameters:
dst- the destination write stream
-
exceptionHandler
- Specified by:
exceptionHandlerin interfaceReadStream<AmqpMessage>- Specified by:
exceptionHandlerin interfaceStreamBase- Parameters:
handler- the exception handler- Returns:
-
handler
- Specified by:
handlerin interfaceReadStream<AmqpMessage>- Returns:
-
pause
- Specified by:
pausein interfaceReadStream<AmqpMessage>- Returns:
- a reference to this, so the API can be used fluently
-
resume
- Specified by:
resumein interfaceReadStream<AmqpMessage>- Returns:
- a reference to this, so the API can be used fluently
-
fetch
- Specified by:
fetchin interfaceReadStream<AmqpMessage>- Returns:
- a reference to this, so the API can be used fluently
-
endHandler
- Specified by:
endHandlerin interfaceReadStream<AmqpMessage>- Returns:
-
address
- Returns:
- the address, not
null
-
close
Closes the receiver.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
closeAndAwait
Blocking variant ofclose().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() -
connection
- Returns:
- the connection having created the receiver.
-
unwrap
public io.vertx.proton.ProtonReceiver unwrap()- Returns:
- the underlying ProtonReceiver.
-
toMulti
- Specified by:
toMultiin interfaceReadStream<AmqpMessage>
-
toBlockingIterable
-
toBlockingStream
-
newInstance
-