Class EventBusMessage<T>
- java.lang.Object
 - 
- io.smallrye.reactive.messaging.eventbus.EventBusMessage<T>
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CompletionStage<Void>ack()Acknowledge this message.Supplier<CompletionStage<Void>>getAck()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.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.eclipse.microprofile.reactive.messaging.Message
addMetadata, getMetadata, getMetadata, getNack, nack, unwrap, withAck, withMetadata, withMetadata, withNack, withPayload 
 - 
 
 - 
 
- 
- 
Method Detail
- 
ack
public CompletionStage<Void> ack()
Description copied from interface:MessageAcknowledge this message. 
- 
getPayload
public T getPayload()
- Specified by:
 getPayloadin interfaceMessage<T>- Returns:
 - The payload for this message.
 
 
- 
getAddress
public String getAddress()
 
- 
unwrap
public io.vertx.core.eventbus.Message<T> unwrap()
 
- 
getAck
public Supplier<CompletionStage<Void>> getAck()
- Specified by:
 getAckin interfaceMessage<T>- Returns:
 - the supplier used to retrieve the acknowledgement 
CompletionStage. 
 
 - 
 
 -