start static method

WorkerRequest start(
  1. dynamic channelInfo,
  2. String id,
  3. List args
)

Creates a new start request.

Implementation

static WorkerRequest start(dynamic channelInfo, String id, List args) => [
      null, // 0 - travel time
      channelInfo, // 1 - client
      _connectCommand, // 2 - command
      args, // 3 - args
      null, // 4 - cancellation token
      Squadron.logLevel, // 5 - log level
      id, // 6 - worker id
      true, // 7 - inspect response
    ];