|
|
|
|
AdditionCompleted (Property) In french: AjoutTerminé
The AdditionCompleted property determines or changes the addition status of an element in a queue, list or stack. This status is used when handling multiple threads. For example, with this property, one thread can let another thread know that it has added all the elements to the queue.
// For more details, see the full example of the property gFilesnames.AdditionCompleted = True
Syntax
Determining if an element has been added to a queue, list or stack Hide the details
<Addition mode> = <Element name>.AdditionCompleted
<Addition mode>: Boolean - True if the element was successfully added to the queue, list or stack.
- False if the addition of the element is not completed yet.
<Element name>: Queue, List or Stack Name of the Queue, List or Stack variable used.
Changing the addition status of an element in a queue, list or stack Hide the details
<Element name>.AdditionCompleted = <New mode>
<Element name>: Queue, List or Stack Name of the Queue, List or Stack variable used. <New mode>: Boolean - True if the element was successfully added to the queue, list or stack.
- False if the addition of the element is not completed yet.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|