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

org.apache.xmlrpc.client.XmlRpcClientWorkerFactory Maven / Gradle / Ivy

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

import org.apache.xmlrpc.common.XmlRpcWorker;
import org.apache.xmlrpc.common.XmlRpcWorkerFactory;


/** A worker factory for the client, creating instances of
 * {@link org.apache.xmlrpc.client.XmlRpcClientWorker}.
 */
public class XmlRpcClientWorkerFactory extends XmlRpcWorkerFactory {
	/** Creates a new instance.
	 * @param pClient The factory controller.
	 */
	public XmlRpcClientWorkerFactory(XmlRpcClient pClient) {
		super(pClient);
	}

	/** Creates a new worker instance.
	 * @return New instance of {@link XmlRpcClientWorker}.
	 */
	protected XmlRpcWorker newWorker() {
		return new XmlRpcClientWorker(this);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy