Пример #1
0
  /** Notifies pipelined consumers of this result partition once. */
  private void notifyPipelinedConsumers() {
    if (sendScheduleOrUpdateConsumersMessage
        && !hasNotifiedPipelinedConsumers
        && partitionType.isPipelined()) {
      partitionConsumableNotifier.notifyPartitionConsumable(jobId, partitionId, taskActions);

      hasNotifiedPipelinedConsumers = true;
    }
  }