Skip to content

WaitConditionProps

Properties for defining a WaitCondition.

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

Initializer

using AlibabaCloud.SDK.ROS.CDK.Ros;
new WaitConditionProps {
    object Handle,
    object Timeout,
    object Count = null,
    object ShowProgressEvent = null
};

Properties

Name Type Description
Handle object Property handle: A reference to the wait condition handle used to signal this wait condition.
Timeout object Property timeout: The number of seconds to wait for the correct number of signals to arrive.
Count object Property count: The number of success signals that must be received before the stack creation process continues.
ShowProgressEvent object Property showProgressEvent: Whether to generate progress changed event.

HandleRequired

public object Handle { get; set; }
  • Type: object

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


TimeoutRequired

public object Timeout { get; set; }
  • Type: object

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


CountOptional

public object Count { get; set; }
  • Type: object

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


ShowProgressEventOptional

public object ShowProgressEvent { get; set; }
  • Type: object

Property showProgressEvent: Whether to generate progress changed event.

Default to Disabled.