congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
UserTransactionHelper$UserTransactionWithContext.getLog
Code IndexAdd Tabnine to your IDE (free)

How to use
getLog
method
in
org.quartz.ee.jta.UserTransactionHelper$UserTransactionWithContext

Best Java code snippets using org.quartz.ee.jta.UserTransactionHelper$UserTransactionWithContext.getLog (Showing top 8 results out of 315)

origin: quartz-scheduler/quartz

/**
 * When we are being garbage collected, make sure we were properly
 * returned to the UserTransactionHelper.
 */
@Override
protected void finalize() throws Throwable {
  try {
    if (context != null) {
      getLog().warn("UserTransaction was never returned to the UserTransactionHelper.");
      closeContext();
    }
  } finally {
    super.finalize();
  }
}
origin: quartz-scheduler/quartz

/**
 * When we are being garbage collected, make sure we were properly
 * returned to the UserTransactionHelper.
 */
@Override
protected void finalize() throws Throwable {
  try {
    if (context != null) {
      getLog().warn("UserTransaction was never returned to the UserTransactionHelper.");
      closeContext();
    }
  } finally {
    super.finalize();
  }
}
origin: quartz-scheduler/quartz

/**
 * Close the InitialContext that was used to lookup/create the
 * underlying UserTransaction.
 */
public void closeContext() {
  try {
    if (context != null) {
      context.close();
    }
  } catch (Throwable t) {
    getLog().warn("Failed to close InitialContext used to get a UserTransaction.", t);
  }
  context = null;
}
origin: quartz/quartz-all

/**
 * When we are being garbage collected, make sure we were properly
 * returned to the UserTransactionHelper.
 */
protected void finalize() throws Throwable {
  try {
    if (context != null) {
      getLog().warn("UserTransaction was never returned to the UserTransactionHelper.");
      closeContext();
    }
  } finally {
    super.finalize();
  }
}
origin: quartz/quartz-all

/**
 * Close the InitialContext that was used to lookup/create the
 * underlying UserTransaction.
 */
public void closeContext() {
  try {
    if (context != null) {
      context.close();
    }
  } catch (Throwable t) {
    getLog().warn("Failed to close InitialContext used to get a UserTransaction.", t);
  }
  context = null;
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * Close the InitialContext that was used to lookup/create the
 * underlying UserTransaction.
 */
public void closeContext() {
  try {
    if (context != null) {
      context.close();
    }
  } catch (Throwable t) {
    getLog().warn("Failed to close InitialContext used to get a UserTransaction.", t);
  }
  context = null;
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * When we are being garbage collected, make sure we were properly
 * returned to the UserTransactionHelper.
 */
protected void finalize() throws Throwable {
  try {
    if (context != null) {
      getLog().warn("UserTransaction was never returned to the UserTransactionHelper.");
      closeContext();
    }
  } finally {
    super.finalize();
  }
}
origin: quartz-scheduler/quartz

/**
 * Close the InitialContext that was used to lookup/create the
 * underlying UserTransaction.
 */
public void closeContext() {
  try {
    if (context != null) {
      context.close();
    }
  } catch (Throwable t) {
    getLog().warn("Failed to close InitialContext used to get a UserTransaction.", t);
  }
  context = null;
}
org.quartz.ee.jtaUserTransactionHelper$UserTransactionWithContextgetLog

Popular methods of UserTransactionHelper$UserTransactionWithContext

  • <init>
  • closeContext
    Close the InitialContext that was used to lookup/create the underlying UserTransaction.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • startActivity (Activity)
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (Timer)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • BoxLayout (javax.swing)
  • JTable (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