You are here: Reference > Activity methods > Connect-Wait

  Connect-Wait method

Use the Connect-Wait method

 

Parameters

This method accepts two parameters:

Parameter

Description

WaitSeconds

Enter a positive number of seconds as a timeout interval, or enter -1 to cause an indefinite wait.

PoolID

PoolID is an arbitrary identifier used in the activity methods Load-DataPage and Call-Async-Activity to help manage asynchronous data loading. Provide a value when using Connect-Wait in an activity of type Asynchronous. PoolID can be any valid String, a property reference, or a parameter.

 

PoolID exists in the context of the activity using it, so you can have identical PoolID values in different activities without causing a problem.

Results

  1. WaitSeconds has a value and PoolID has a value: Wait for child requestors to finish (if any) and then wait for data pages which belong to PoolID to finish loading. The entire operation has a timeout of the specified WaitSeconds.
  2. WaitSeconds has no value and PoolID has a value: Wait for child requestors to finish (if any) and then wait for data pages which belong to PoolID to finish loading. The entire operation has a timeout of indefinite.
  3. WaitSeconds has a value and PoolID has no value: Wait for child requestors to finish (if any). The entire operation has a timeout of specified WaitSeconds.
  4. WaitSeconds has no value and PoolID has no value: Wait for child requestors to finish (if any). The entire operation has a timeout of indefinite.

When awakened, if the method status is Good, the activity can examine the results pages of the connector methods. If the method status is Fail, this may indicate that one or more of the parallel child requestors has not completed.

The Connect-Wait method sets the method status to Good or Fail even if you simulate the connector rule through a Connector Simulation data instance.

Checking the method status

This method updates the pxMethodStatus property. See How to test method results using a transition.

Related topics About Connect SQL rules
Creating Connector Simulations
Connect-dotNet method

Connect-EJB method

Connect-HTTP method
Connect-Java method

Connect-JMS method
Connect-MQ method
Connect-SOAP method

RDB-Open method
RDB-Save method

RDB-Delete method

RDB-List method
How to detect long-running connectors

Methods and instructions by function