Index
Object PCRE.PCREServer
addArgument(String)
- Add the argument to the end of the current command-line string.
Connect()
- Connect the client to the PCRE Server.
Disconnect()
- Notify the PCRE Server that the client is disconnecting.
EndService(String)
- Terminate the API service on the server.
getAPI()
- Return the api reference for the server.
getArguments()
- Return the PCRE Server command-line arguments.
getCommandArgs()
- Return the server command-line arguments.
getEngineStartMonitor()
-
getExecutable()
- Return the PCRE Server executable.
GetFolder()
- Return the API server's current working folder.
getHost()
- Return the host-name of the PCRE Server.
getName()
- Return the name of the PCRE Server.
getService()
- Return the service-name of the PCRE Server.
GetVersion()
- Return a string with the API server version.
OpenEngine(PCREClient, boolean)
- Acquire and optionally open a print-engine for this client.
setArguments(String)
- Set the PCRE Server command-line arguments to the given string.
setExecutable(String)
- Set the PCRE Server executable to the given string.
SetFolder(String)
- Set the API srrver's working folder.
setHost(String)
- Set the host-name of the PCRE Server.
setName(String)
- Set the name of the PCRE Server.
SetOption(String, String)
- Set server option with the given value.
StartService(String)
- Start the API service on the server.
addArgument
void addArgument(String arg)
Add the argument to the end of the current command-line string.
- Parameters:
arg - The argument to add to this server.
Connect
void Connect()
Connect the client to the PCRE Server.
Disconnect
void Disconnect()
Notify the PCRE Server that the client is disconnecting.
EndService
void EndService(String apiName)
Terminate the API service on the server.
- Parameters:
apiName - The name of the API that should be terminated.
getAPI
PCREAPIServer getAPI()
Return the api reference for the server.
- Returns:
- The API associated with this server.
getArguments
String getArguments()
Return the PCRE Server command-line arguments.
- Returns:
- The current arguments for this server.
getCommandArgs
String getCommandArgs()
Return the server command-line arguments.
- Returns:
- The command line arguments for this server.
getEngineStartMonitor
PCREEngineStartMonitor getEngineStartMonitor()
getExecutable
String getExecutable()
Return the PCRE Server executable.
- Returns:
- The executatable filename for this server.
GetFolder
String GetFolder()
Return the API server's current working folder.
- Returns:
- The current working folder for the server.
getHost
String getHost()
Return the host-name of the PCRE Server.
- Returns:
- The host-name of this server.
getName
String getName()
Return the name of the PCRE Server.
- Returns:
- The name of this server.
getService
String getService()
Return the service-name of the PCRE Server.
- Returns:
- The service-name of this server.
GetVersion
String GetVersion()
Return a string with the API server version.
- Returns:
- The version string.
OpenEngine
PCREEngine OpenEngine(PCREClient client,
boolean open)
Acquire and optionally open a print-engine for this client.
- Parameters:
client - The current client instance.
open - If true, open the print-engine on the server.
- Returns:
- A print-engine object.
setArguments
void setArguments(String argString)
Set the PCRE Server command-line arguments to the given string.
- Parameters:
argString - The arguments to set for this server.
setExecutable
void setExecutable(String exeString)
Set the PCRE Server executable to the given string.
- Parameters:
exeString - The path, and filname to the PCRE Server.
SetFolder
void SetFolder(String folder)
Set the API srrver's working folder.
- Parameters:
folder - The new working directory for the server.
setHost
void setHost(String address)
Set the host-name of the PCRE Server.
- Parameters:
address - The new host-name for this server.
setName
void setName(String name)
Set the name of the PCRE Server.
- Parameters:
name - The new name for this server.
SetOption
void SetOption(String option,
String value)
Set server option with the given value.
- Parameters:
option - The name of the option that is being modified.
value - The new value for this option.
StartService
Object StartService(String apiName)
Start the API service on the server.
- Parameters:
apiName - The name of the API object that the server is providing.
Index