Package jakarta.xml.messaging
Interface OnewayListener
-
@Deprecated public interface OnewayListenerDeprecated.since 6.2, will be removed without replacementA marker interface for components (for example, servlets) that are intended to be consumers of one-way (asynchronous) JAXM messages. The receiver of a one-way message is sent the message in one operation, and it sends the response in another separate operation. The time interval between the receipt of a one-way message and the sending of the response may be measured in fractions of seconds or days.The implementation of the
onMessagemethod defines how the receiver responds to theSOAPMessageobject that was passed to theonMessagemethod.- See Also:
JAXMServlet,ReqRespListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidonMessage(jakarta.xml.soap.SOAPMessage message)Deprecated.Passes the givenSOAPMessageobject to thisOnewayListenerobject.
-
-
-
Method Detail
-
onMessage
void onMessage(jakarta.xml.soap.SOAPMessage message)
Deprecated.Passes the givenSOAPMessageobject to thisOnewayListenerobject. This method is invoked behind the scenes, typically by the container (servlet or EJB container) after the messaging provider delivers the message to the container. It is expected that EJB Containers will deliver JAXM messages to EJB components using message driven Beans that implement thejakarta.xml.messaging.OnewayListenerinterface.- Parameters:
message- theSOAPMessageobject to be passed to thisOnewayListenerobject
-
-