Specifies the approach used by FPPool_Open to open connections. Possible values are:

  • 0: Specifies FP_NORMAL_OPEN where FPPool_Open attempts to open connections to all addresses in the connection string and all associated replication addresses. Consider using this strategy if your application performs numerous operations while the pool is open. This option is the default strategy and is equivalent to FP_OPTION_DEFAULT_OPTIONS.
  • 1: Specifies FP_LAZY_OPEN where FPPool_Open opens connections to addresses only as needed. Consider using this strategy if your application frequently opens and closes the pool.


Namespace: FileNet.Api.Admin
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Property FPOpenStrategy As Nullable(Of Integer)
C#
Nullable<int> FPOpenStrategy { get; set; }
C++
property Nullable<int> FPOpenStrategy abstract  {
    Nullable<int> get();
    void set(Nullable<intvalue);
}
J#
/** property */
public Nullable<int> get_FPOpenStrategy();

/** property */
public void set_FPOpenStrategy(Nullable<intvalue);
JScript
public function get FPOpenStrategy() : Nullable<int>

public function set FPOpenStrategy(value : Nullable<int>);

Remarks

See Also