Click or drag to resize
PromisesPooled Method
Return a promise that resolves upon completion of all the contained promises. Only allow a select number of promises to be active at a given time.

Namespace: Innovator.Client
Assembly: Innovator.Client (in Innovator.Client.dll) Version: 2016.1.15.1759 (2016.01.15.1759)
Syntax
public static IPromise<IList<Object>> Pooled(
	int poolSize,
	params Func<IPromise>[] promises
)

Parameters

poolSize
Type: SystemInt32
Number of promises that can be active simultaneously
promises
Type: SystemFuncIPromise
Factory for creating the promises

Return Value

Type: IPromiseIListObject
See Also