Package jakarta.xml.messaging
Interface OnewayListener
-
@Deprecated public interface OnewayListener
Deprecated.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
onMessage
method defines how the receiver responds to theSOAPMessage
object that was passed to theonMessage
method.- See Also:
JAXMServlet
,ReqRespListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
onMessage(jakarta.xml.soap.SOAPMessage message)
Deprecated.Passes the givenSOAPMessage
object to thisOnewayListener
object.
-
-
-
Method Detail
-
onMessage
void onMessage(jakarta.xml.soap.SOAPMessage message)
Deprecated.Passes the givenSOAPMessage
object to thisOnewayListener
object. 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.OnewayListener
interface.- Parameters:
message
- theSOAPMessage
object to be passed to thisOnewayListener
object
-
-