Tibrv.setRVParameters()

Method

Declaration

static void setRVParameters(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 TIBCO Rendezvous Concepts.

This call is available only with IPM. When IPM is not available, this call throws an exception with error status.

Parameter

Description

parameters

Supply an array of strings. Each string is either a command line parameter name (for example, -logfile) or its value.

For details about parameters, see rvd in TIBCO Rendezvous Administration

IPM: Configuring Parameters In Program Code

String rvParams[] = {"-reliability", "3",
                     "-reuse-port", "30000"};
Tibrv.setRVParameters(rvParams);
Tibrv.open();

See Also

Configuring IPM in TIBCO Rendezvous Concepts