Click or drag to resize

GuardCondition Class

A GuardCondition object is a specific Condition whose TriggerValue is completely under the control of the application.
Inheritance Hierarchy

Namespace:  OpenDDSharp.DDS
Assembly:  OpenDDSharp (in OpenDDSharp.dll) Version: 0.5.0.0
Syntax
public class GuardCondition : Condition

The GuardCondition type exposes the following members.

Constructors
  NameDescription
Public methodGuardCondition
Creates a new instance of GuardCondition
Top
Properties
  NameDescription
Public propertyTriggerValue
Gets/Sets the trigger value of the GuardCondition
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

GuardCondition has no factory. When first created the TriggerValue is set to .

The purpose of the GuardCondition is to provide the means for the application to manually wakeup a WaitSet. This is accomplished by attaching the GuardCondition to the WaitSet and then setting the TriggerValue by means of the TriggerValue set operation.

See Also