executeWith3Args<T, Q, C, A> method

  1. @override
Future<T> executeWith3Args<T, Q, C, A>(
  1. Task3<T, Q, C, A> task,
  2. Q argument,
  3. C argument2,
  4. A argument3,
)
override

Executes given task with given arguments in combine isolate.

This future may complete with:

Implementation

@override
Future<T> executeWith3Args<T, Q, C, A>(
  Task3<T, Q, C, A> task,
  Q argument,
  C argument2,
  A argument3,
) {
  return _effectiveWorkerManager.execute(
    TaskWith3Args(task, argument, argument2, argument3),
  );
}