Package org.openwms.common.comm
Interface RespondingServiceActivator<T,U>
- Type Parameters:
T
- Type of incoming message that is being processedU
- Type of outgoing message that is returned
- All Superinterfaces:
CustomServiceActivator
A RespondingServiceActivator is a Service Activator implementation that accepts a
message and replies with a response message.
- Author:
- Heiko Scherrer
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.messaging.Message
<U> wakeUp
(GenericMessage<T> message) Wake up a service, processor or bean that accepts incoming messages of typeT
and returns messages of typeU
.Methods inherited from interface org.openwms.common.comm.CustomServiceActivator
getChannel, getChannelName
-
Method Details
-
wakeUp
Wake up a service, processor or bean that accepts incoming messages of typeT
and returns messages of typeU
.- Parameters:
message
- The message to forward- Returns:
- The response returned from the service
-