Class EventBusMessage<T>
- java.lang.Object
- 
- io.smallrye.reactive.messaging.eventbus.EventBusMessage<T>
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description CompletionStage<Void>ack()Acknowledge this message.StringgetAddress()Optional<String>getHeader(String key)List<String>getHeaders(String key)TgetPayload()Optional<String>getReplyAddress()io.vertx.core.eventbus.Message<T>unwrap()- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.eclipse.microprofile.reactive.messaging.MessageaddMetadata, getAck, getMetadata, getMetadata, unwrap, withAck, withMetadata, withMetadata, withPayload
 
- 
 
- 
- 
- 
Method Detail- 
ackpublic CompletionStage<Void> ack() Description copied from interface:MessageAcknowledge this message.
 - 
getPayloadpublic T getPayload() - Specified by:
- getPayloadin interface- Message<T>
- Returns:
- The payload for this message.
 
 - 
getAddresspublic String getAddress() 
 - 
unwrappublic io.vertx.core.eventbus.Message<T> unwrap() 
 
- 
 
-