Tibrv.setRVParameters()
Method
Declaration
static voidsetRVParameters
(String[] parameters)
throws TibrvException
Purpose
Set TIBCO Rendezvous daemon command line parameters for IPM.
Remarks
The TIBCO Rendezvous
daemon process (rvd
) accepts several command line parameters. When IPM serves the role of the daemon, this call lets you supply those parameters from within the application program.
This call is optional. When this call is present, it has no effect unless it precedes the call to Tibrv.open(). For interaction semantics, see Parameter Configuration—Precedence and Interaction in .
This call is available only with IPM. When IPM is not available, this call throws an exception with error status.
Parameter |
Description |
|
Supply an array of strings. Each string is either a command line parameter name (for example, For details about parameters, see rvd in |
IPM: Configuring Parameters In Program Code
String rvParams[] = {"-reliability", "3",
"-reuse-port", "30000"};
Tibrv.setRVParameters(rvParams);
Tibrv.open();
See Also
Configuring IPM in