executeWithApply<T> method

  1. @override
Future<T> executeWithApply<T>(
  1. TaskApply task,
  2. List? positionalArguments, [
  3. Map<Symbol, dynamic>? namedArguments
])
override

Executes given task with given arguments in combine isolate.

This future may complete with:

Implementation

@override
Future<T> executeWithApply<T>(
  TaskApply task,
  List? positionalArguments, [
  Map<Symbol, dynamic>? namedArguments,
]) {
  return _effectiveWorkerManager.execute(
    TaskWithApplyArgs(task, positionalArguments, namedArguments),
  );
}