src/main/java/build/buildfarm/worker/OperationContext.java [34:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private OperationContext(
      ExecuteResponse.Builder executeResponse,
      Operation operation,
      Poller poller,
      Path execDir,
      Action action,
      Command command,
      QueueEntry queueEntry) {
    this.executeResponse = executeResponse;
    this.operation = operation;
    this.poller = poller;
    this.execDir = execDir;
    this.action = action;
    this.command = command;
    this.queueEntry = queueEntry;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/build/buildfarm/worker/OperationContext.java [60:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private Builder(
        ExecuteResponse.Builder executeResponse,
        Operation operation,
        Poller poller,
        Path execDir,
        Action action,
        Command command,
        QueueEntry queueEntry) {
      this.executeResponse = executeResponse;
      this.operation = operation;
      this.poller = poller;
      this.execDir = execDir;
      this.action = action;
      this.command = command;
      this.queueEntry = queueEntry;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



