executeWithArg<T, Q> method

  1. @override
Future<T> executeWithArg<T, Q>(
  1. Task1<T, Q> action,
  2. Q argument
)
override

Executes given task with given argument in combine isolate.

Implementation

@override
Future<T> executeWithArg<T, Q>(Task1<T, Q> action, Q argument) {
  return _effectiveWorkerManager.execute(TaskWithArg(action, argument));
}