EasyCompute<R, I> constructor
EasyCompute<R, I> (
- ComputeEntrypoint<
I> entrypoint, { - required String workerName,
- Duration? timeoutDuration,
Implementation
EasyCompute(
ComputeEntrypoint<I> entrypoint, {
required String workerName,
this.timeoutDuration,
}) : super(entrypoint, workerName: workerName) {
_subscription = onMessage(onData);
}