All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.xmlrpc.common.XmlRpcStreamRequestProcessor Maven / Gradle / Ivy

There is a newer version: 3.1.3
Show newest version
package org.apache.xmlrpc.common;

import org.apache.xmlrpc.XmlRpcException;


/** An instance of {@link XmlRpcRequestProcessor},
 * which is processing an XML stream.
 */
public interface XmlRpcStreamRequestProcessor extends XmlRpcRequestProcessor {
	/** 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.
	 */
	void execute(XmlRpcStreamRequestConfig pConfig, ServerStreamConnection pConnection) throws XmlRpcException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy