Tabnine Logo
DefaultJobCatalogListenerImpl.onUpdateJob
Code IndexAdd Tabnine to your IDE (free)

How to use
onUpdateJob
method
in
org.apache.gobblin.runtime.std.DefaultJobCatalogListenerImpl

Best Java code snippets using org.apache.gobblin.runtime.std.DefaultJobCatalogListenerImpl.onUpdateJob (Showing top 4 results out of 315)

origin: apache/incubator-gobblin

 @Override public void onUpdateJob(JobSpec updatedJob) {
  super.onUpdateJob(updatedJob);
  try {
   _jobSpecQueue.put(new ImmutablePair<SpecExecutor.Verb, Spec>(SpecExecutor.Verb.UPDATE, updatedJob));
   _metrics.jobSpecEnqCount.incrementAndGet();
  } catch (InterruptedException e) {
   Thread.currentThread().interrupt();
  }
 }
}
origin: apache/incubator-gobblin

 @Override public void onUpdateJob(JobSpec updatedJob) {
  super.onUpdateJob(updatedJob);
  _jobScheduler.scheduleJob(updatedJob, createJobSpecRunnable(updatedJob));
 }
}
origin: org.apache.gobblin/gobblin-service-kafka

 @Override public void onUpdateJob(JobSpec updatedJob) {
  super.onUpdateJob(updatedJob);
  try {
   _jobSpecQueue.put(new ImmutablePair<SpecExecutor.Verb, Spec>(SpecExecutor.Verb.UPDATE, updatedJob));
   _metrics.jobSpecEnqCount.incrementAndGet();
  } catch (InterruptedException e) {
   Thread.currentThread().interrupt();
  }
 }
}
origin: org.apache.gobblin/gobblin-runtime

 @Override public void onUpdateJob(JobSpec updatedJob) {
  super.onUpdateJob(updatedJob);
  _jobScheduler.scheduleJob(updatedJob, createJobSpecRunnable(updatedJob));
 }
}
org.apache.gobblin.runtime.stdDefaultJobCatalogListenerImplonUpdateJob

Javadoc

Popular methods of DefaultJobCatalogListenerImpl

  • onAddJob
  • onDeleteJob

Popular in Java

  • Creating JSON documents from java classes using gson
  • addToBackStack (FragmentTransaction)
  • getSharedPreferences (Context)
  • getContentResolver (Context)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • 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