Interface DatagramDispatcherCallback
-
public interface DatagramDispatcherCallback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
receive(DatagramEndpoint endpoint, byte[] data, int length, DatagramOutTransportInfo outInfo)
Receive a message and inject it into the Axis2 engine.
-
-
-
Method Detail
-
receive
void receive(DatagramEndpoint endpoint, byte[] data, int length, DatagramOutTransportInfo outInfo)
Receive a message and inject it into the Axis2 engine.- Parameters:
endpoint
- the endpoint that received the messagedata
- the data of the messagelength
- the length of the messageoutInfo
- The out transport information that should be used to send back a response. This should only be set by transports that support an explicit back channel.
-
-