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.ExchangePatterngetExchangePattern()Map<String,Object>getHeaders()Map<String,Object>getProperties()OutgoingExchangeMetadataputHeader(String name, Object value)OutgoingExchangeMetadataputProperty(String name, Object value)OutgoingExchangeMetadataremoveHeader(String name)OutgoingExchangeMetadataremoveProperty(String name)OutgoingExchangeMetadatasetExchangePattern(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()
-
-