Class OutgoingExchangeMetadata
- java.lang.Object
-
- io.smallrye.reactive.messaging.camel.OutgoingExchangeMetadata
-
public class OutgoingExchangeMetadata extends Object
-
-
Constructor Summary
Constructors Constructor Description OutgoingExchangeMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.camel.ExchangePattern
getExchangePattern()
Map<String,Object>
getHeaders()
Map<String,Object>
getProperties()
OutgoingExchangeMetadata
putHeader(String name, Object value)
OutgoingExchangeMetadata
putProperty(String name, Object value)
OutgoingExchangeMetadata
removeHeader(String name)
OutgoingExchangeMetadata
removeProperty(String name)
OutgoingExchangeMetadata
setExchangePattern(org.apache.camel.ExchangePattern pattern)
-
-
-
Method Detail
-
putProperty
public OutgoingExchangeMetadata putProperty(String name, Object value)
-
removeProperty
public OutgoingExchangeMetadata removeProperty(String name)
-
putHeader
public OutgoingExchangeMetadata putHeader(String name, Object value)
-
removeHeader
public OutgoingExchangeMetadata removeHeader(String name)
-
setExchangePattern
public OutgoingExchangeMetadata setExchangePattern(org.apache.camel.ExchangePattern pattern)
-
getExchangePattern
public org.apache.camel.ExchangePattern getExchangePattern()
-
-