Skip to content

WaitConditionProps

Properties for defining a WaitCondition.

See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-ros-waitcondition

Initializer

import com.aliyun.ros.cdk.ros.WaitConditionProps;
WaitConditionProps.builder()
    .handle(java.lang.String)
    .handle(IResolvable)
    .timeout(java.lang.Number)
    .timeout(IResolvable)
//  .count(java.lang.Number)
//  .count(IResolvable)
//  .showProgressEvent(java.lang.String)
//  .showProgressEvent(IResolvable)
    .build();

Properties

Name Type Description
handle java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property handle: A reference to the wait condition handle used to signal this wait condition.
timeout java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable Property timeout: The number of seconds to wait for the correct number of signals to arrive.
count java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable Property count: The number of success signals that must be received before the stack creation process continues.
showProgressEvent java.lang.String OR com.aliyun.ros.cdk.core.IResolvable Property showProgressEvent: Whether to generate progress changed event.

handleRequired

public java.lang.Object getHandle();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property handle: A reference to the wait condition handle used to signal this wait condition.


timeoutRequired

public java.lang.Object getTimeout();
  • Type: java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable

Property timeout: The number of seconds to wait for the correct number of signals to arrive.


countOptional

public java.lang.Object getCount();
  • Type: java.lang.Number OR com.aliyun.ros.cdk.core.IResolvable

Property count: The number of success signals that must be received before the stack creation process continues.


showProgressEventOptional

public java.lang.Object getShowProgressEvent();
  • Type: java.lang.String OR com.aliyun.ros.cdk.core.IResolvable

Property showProgressEvent: Whether to generate progress changed event.

Default to Disabled.