Tabnine Logo
CheckpointCoordinatorGateway
Code IndexAdd Tabnine to your IDE (free)

How to use
CheckpointCoordinatorGateway
in
org.apache.flink.runtime.checkpoint

Best Java code snippets using org.apache.flink.runtime.checkpoint.CheckpointCoordinatorGateway (Showing top 8 results out of 315)

origin: com.alibaba.blink/flink-runtime

@Override
public void acknowledgeCheckpoint(
    JobID jobID,
    ExecutionAttemptID executionAttemptID,
    long checkpointId,
    CheckpointMetrics checkpointMetrics,
    TaskStateSnapshot subtaskState) {
  checkpointCoordinatorGateway.acknowledgeCheckpoint(
    jobID,
    executionAttemptID,
    checkpointId,
    checkpointMetrics,
    subtaskState);
}
origin: com.alibaba.blink/flink-runtime

@Override
public void declineCheckpoint(
    JobID jobID,
    ExecutionAttemptID executionAttemptID,
    long checkpointId, 
    Throwable cause) {
  checkpointCoordinatorGateway.declineCheckpoint(jobID, executionAttemptID, checkpointId, cause);
}
origin: org.apache.flink/flink-runtime_2.10

  @Override
  public void declineCheckpoint(
      JobID jobID,
      ExecutionAttemptID executionAttemptID,
      long checkpointId, 
      Throwable cause) {

    checkpointCoordinatorGateway.declineCheckpoint(jobID, executionAttemptID, checkpointId, cause);
  }
}
origin: org.apache.flink/flink-runtime_2.11

@Override
public void acknowledgeCheckpoint(
    JobID jobID,
    ExecutionAttemptID executionAttemptID,
    long checkpointId,
    CheckpointMetrics checkpointMetrics,
    TaskStateSnapshot subtaskState) {
  checkpointCoordinatorGateway.acknowledgeCheckpoint(
    jobID,
    executionAttemptID,
    checkpointId,
    checkpointMetrics,
    subtaskState);
}
origin: org.apache.flink/flink-runtime

  @Override
  public void declineCheckpoint(
      JobID jobID,
      ExecutionAttemptID executionAttemptID,
      long checkpointId,
      Throwable cause) {

    checkpointCoordinatorGateway.declineCheckpoint(new DeclineCheckpoint(jobID,
      executionAttemptID,
      checkpointId,
      cause));
  }
}
origin: org.apache.flink/flink-runtime_2.10

@Override
public void acknowledgeCheckpoint(
    JobID jobID,
    ExecutionAttemptID executionAttemptID,
    long checkpointId,
    CheckpointMetrics checkpointMetrics,
    SubtaskState subtaskState) {
  checkpointCoordinatorGateway.acknowledgeCheckpoint(
    jobID,
    executionAttemptID,
    checkpointId,
    checkpointMetrics,
    subtaskState);
}
origin: org.apache.flink/flink-runtime_2.11

  @Override
  public void declineCheckpoint(
      JobID jobID,
      ExecutionAttemptID executionAttemptID,
      long checkpointId,
      Throwable cause) {

    checkpointCoordinatorGateway.declineCheckpoint(new DeclineCheckpoint(jobID,
      executionAttemptID,
      checkpointId,
      cause));
  }
}
origin: org.apache.flink/flink-runtime

@Override
public void acknowledgeCheckpoint(
    JobID jobID,
    ExecutionAttemptID executionAttemptID,
    long checkpointId,
    CheckpointMetrics checkpointMetrics,
    TaskStateSnapshot subtaskState) {
  checkpointCoordinatorGateway.acknowledgeCheckpoint(
    jobID,
    executionAttemptID,
    checkpointId,
    checkpointMetrics,
    subtaskState);
}
org.apache.flink.runtime.checkpointCheckpointCoordinatorGateway

Most used methods

  • acknowledgeCheckpoint
  • declineCheckpoint

Popular in Java

  • Start an intent from android
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getApplicationContext (Context)
  • setContentView (Activity)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Permission (java.security)
    Legacy security code; do not use.
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now