submitAll<Q, R> method

  1. @override
List<Future<R>> submitAll<Q, R>(
  1. Job<Q, R> job
)
override

submits the given function and value to all isolates in the executor, useful for cases where state must be set up in isolates prior to executing jobs

Implementation

@override
List<Future<R>> submitAll<Q, R>(Job<Q, R> job) => delegate.submitAll(job);