Package org.apache.xmlrpc.common
Interface XmlRpcStreamRequestProcessor
-
- All Superinterfaces:
XmlRpcRequestProcessor
- All Known Implementing Classes:
ConnectionServer
,XmlRpcHttpServer
,XmlRpcLocalStreamServer
,XmlRpcServletServer
,XmlRpcStreamServer
public interface XmlRpcStreamRequestProcessor extends XmlRpcRequestProcessor
An instance ofXmlRpcRequestProcessor
, which is processing an XML stream.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(XmlRpcStreamRequestConfig pConfig, ServerStreamConnection pConnection)
Reads an XML-RPC request from the connection object and processes the request, writing the result to the same connection object.-
Methods inherited from interface org.apache.xmlrpc.common.XmlRpcRequestProcessor
execute, getTypeConverterFactory
-
-
-
-
Method Detail
-
execute
void execute(XmlRpcStreamRequestConfig pConfig, ServerStreamConnection pConnection) throws XmlRpcException
Reads an XML-RPC request from the connection object and processes the request, writing the result to the same connection object.- Throws:
XmlRpcException
- Processing the request failed.
-
-