Click or drag to resize

WaitForAny Method

Suspend coroutine until any of the supplied tasks to complete. As soon as one of the wait tasks completes this task completes.

Namespace:  Demo3D.Native
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public static ITask ForAny(
	params Object[] waits
)

Parameters

waits
Type: SystemObject
Array of suspended coroutines.

Return Value

Type: ITask
A task representing the wait for any tasks to complete.
See Also