Environment.SetRVParameters()

Method

Visual Basic

Not supported.

C#

public static Status SetRVParameters(
    string[]  parameters)

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 must precede the call to Environment.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 fails 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[] parameters = new string[] {"-reliability", "3",
                                    "-reuse-port", "30000"};
Environment.SetRVParameters(parameters);
Environment.Open();

See Also

Configuring IPM in TIBCO Rendezvous Concepts