org.ghost4j.modifier.RemoteModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ghost4j Show documentation
Show all versions of ghost4j Show documentation
Java wrapper for Ghostscript API
/*
* Ghost4J: a Java wrapper for Ghostscript API.
*
* Distributable under LGPL license.
* See terms of license at http://www.gnu.org/licenses/lgpl.html.
*/
package org.ghost4j.modifier;
/**
* Interface defining a remote modifier (for Ghostscript multi process support).
*
* @author Gilles Grousset ([email protected])
*/
public interface RemoteModifier extends Modifier {
/**
* Sets max parallel rendering processes allowed for the modifier
*
* @param maxProcessCount
*/
public void setMaxProcessCount(int maxProcessCount);
}