Specifies the time to wait in milliseconds before a failed API function should be retried. If not specified, an exponential back-off scheme is used where the sleep time increases after each retry, starting at 1 second and then doubling after each subsequent try.


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

Syntax

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

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

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

Remarks

See Also