congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
CheckpointCoordinatorGateway.declineCheckpoint
Code IndexAdd Tabnine to your IDE (free)

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

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

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 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 declineCheckpoint(
      JobID jobID,
      ExecutionAttemptID executionAttemptID,
      long checkpointId,
      Throwable cause) {

    checkpointCoordinatorGateway.declineCheckpoint(new DeclineCheckpoint(jobID,
      executionAttemptID,
      checkpointId,
      cause));
  }
}
org.apache.flink.runtime.checkpointCheckpointCoordinatorGatewaydeclineCheckpoint

Popular methods of CheckpointCoordinatorGateway

  • acknowledgeCheckpoint

Popular in Java

  • Creating JSON documents from java classes using gson
  • onRequestPermissionsResult (Fragment)
  • getSystemService (Context)
  • compareTo (BigDecimal)
  • Menu (java.awt)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Path (java.nio.file)
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • JCheckBox (javax.swing)
  • Top Vim 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