Index

Object PCRE.PCREServer


Method Index

 o addArgument(String)
Add the argument to the end of the current command-line string.
 o Connect()
Connect the client to the PCRE Server.
 o Disconnect()
Notify the PCRE Server that the client is disconnecting.
 o EndService(String)
Terminate the API service on the server.
 o getAPI()
Return the api reference for the server.
 o getArguments()
Return the PCRE Server command-line arguments.
 o getCommandArgs()
Return the server command-line arguments.
 o getEngineStartMonitor()
 
 o getExecutable()
Return the PCRE Server executable.
 o GetFolder()
Return the API server's current working folder.
 o getHost()
Return the host-name of the PCRE Server.
 o getName()
Return the name of the PCRE Server.
 o getService()
Return the service-name of the PCRE Server.
 o GetVersion()
Return a string with the API server version.
 o OpenEngine(PCREClient, boolean)
Acquire and optionally open a print-engine for this client.
 o setArguments(String)
Set the PCRE Server command-line arguments to the given string.
 o setExecutable(String)
Set the PCRE Server executable to the given string.
 o SetFolder(String)
Set the API srrver's working folder.
 o setHost(String)
Set the host-name of the PCRE Server.
 o setName(String)
Set the name of the PCRE Server.
 o SetOption(String, String)
Set server option with the given value.
 o StartService(String)
Start the API service on the server.

Method Detail

 o 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.
 o Connect
void Connect()
          Connect the client to the PCRE Server.
 o Disconnect
void Disconnect()
          Notify the PCRE Server that the client is disconnecting.
 o EndService
void EndService(String apiName)
          Terminate the API service on the server.
Parameters:
apiName - The name of the API that should be terminated.
 o getAPI
PCREAPIServer getAPI()
          Return the api reference for the server.
Returns:
The API associated with this server.
 o getArguments
String getArguments()
          Return the PCRE Server command-line arguments.
Returns:
The current arguments for this server.
 o getCommandArgs
String getCommandArgs()
          Return the server command-line arguments.
Returns:
The command line arguments for this server.
 o getEngineStartMonitor
PCREEngineStartMonitor getEngineStartMonitor()
 o getExecutable
String getExecutable()
          Return the PCRE Server executable.
Returns:
The executatable filename for this server.
 o GetFolder
String GetFolder()
          Return the API server's current working folder.
Returns:
The current working folder for the server.
 o getHost
String getHost()
          Return the host-name of the PCRE Server.
Returns:
The host-name of this server.
 o getName
String getName()
          Return the name of the PCRE Server.
Returns:
The name of this server.
 o getService
String getService()
          Return the service-name of the PCRE Server.
Returns:
The service-name of this server.
 o GetVersion
String GetVersion()
          Return a string with the API server version.
Returns:
The version string.
 o 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.
 o 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.
 o setExecutable
void setExecutable(String exeString)
          Set the PCRE Server executable to the given string.
Parameters:
exeString - The path, and filname to the PCRE Server.
 o SetFolder
void SetFolder(String folder)
          Set the API srrver's working folder.
Parameters:
folder - The new working directory for the server.
 o setHost
void setHost(String address)
          Set the host-name of the PCRE Server.
Parameters:
address - The new host-name for this server.
 o setName
void setName(String name)
          Set the name of the PCRE Server.
Parameters:
name - The new name for this server.
 o 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.
 o 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