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.ClientAssembly: 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
)
Public Shared Function Pooled (
poolSize As Integer,
ParamArray promises As Func(Of IPromise)()
) As IPromise(Of IList(Of Object))
Parameters
- poolSize
- Type: SystemInt32
Number of promises that can be active simultaneously - promises
- Type: SystemFuncIPromise
Factory for creating the promises
Return Value
Type:
IPromiseIListObjectSee Also