Tabnine Logo
SchedulerPluginWithUserTransactionSupport.shutdown
Code IndexAdd Tabnine to your IDE (free)

How to use
shutdown
method
in
org.quartz.plugins.SchedulerPluginWithUserTransactionSupport

Best Java code snippets using org.quartz.plugins.SchedulerPluginWithUserTransactionSupport.shutdown (Showing top 4 results out of 315)

origin: quartz-scheduler/quartz

/**
 * Based on the value of <em>wrapInUserTransaction</em>, wraps the
 * call to shutdown(UserTransaction) in a UserTransaction.
 */
public void shutdown() {
  UserTransaction userTransaction = startUserTransaction();
  try {
    shutdown(userTransaction);
  } finally {
    resolveUserTransaction(userTransaction);
  }
}
  
origin: quartz-scheduler/quartz

/**
 * Based on the value of <em>wrapInUserTransaction</em>, wraps the
 * call to shutdown(UserTransaction) in a UserTransaction.
 */
public void shutdown() {
  UserTransaction userTransaction = startUserTransaction();
  try {
    shutdown(userTransaction);
  } finally {
    resolveUserTransaction(userTransaction);
  }
}
  
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * Based on the value of <em>wrapInUserTransaction</em>, wraps the
 * call to shutdown(UserTransaction) in a UserTransaction.
 */
public void shutdown() {
  UserTransaction userTransaction = startUserTransaction();
  try {
    shutdown(userTransaction);
  } finally {
    resolveUserTransaction(userTransaction);
  }
}
  
origin: quartz/quartz-all

/**
 * Based on the value of <em>wrapInUserTransaction</em>, wraps the
 * call to shutdown(UserTransaction) in a UserTransaction.
 */
public void shutdown() {
  UserTransaction userTransaction = startUserTransaction();
  try {
    shutdown(userTransaction);
  } finally {
    resolveUserTransaction(userTransaction);
  }
}
  
org.quartz.pluginsSchedulerPluginWithUserTransactionSupportshutdown

Javadoc

Based on the value of wrapInUserTransaction, wraps the call to shutdown(UserTransaction) in a UserTransaction.

Popular methods of SchedulerPluginWithUserTransactionSupport

  • getLog
    Get the commons Log for this class.
  • getName
    Get the name of this plugin. Set as part of initialize().
  • initialize
  • resolveUserTransaction
    If the given UserTransaction is not null, it is committed/rolledback, and then returned to the UserT
  • start
    Called when the associated Scheduler is started, in order to let the plug-in know it can now make c
  • startUserTransaction
    If wrapInUserTransaction is true, starts a new UserTransaction and returns it. Otherwise, or if esta

Popular in Java

  • Reactive rest calls using spring rest template
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • putExtra (Intent)
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Option (scala)
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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