Codota Logo
StringKeyDirtyFlagMap.containsTransientData
Code IndexAdd Codota to your IDE (free)

How to use
containsTransientData
method
in
org.quartz.utils.StringKeyDirtyFlagMap

Best Java code snippets using org.quartz.utils.StringKeyDirtyFlagMap.containsTransientData (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ScheduledThreadPoolExecutor s =
  • Codota Iconnew ScheduledThreadPoolExecutor(corePoolSize)
  • Codota IconThreadFactory threadFactory;new ScheduledThreadPoolExecutor(corePoolSize, threadFactory)
  • Codota IconString str;new ScheduledThreadPoolExecutor(1, new ThreadFactoryBuilder().setNameFormat(str).build())
  • Smart code suggestions by Codota
}
origin: quartz-scheduler/quartz

/**
 * Tell the <code>StringKeyDirtyFlagMap</code> that it should
 * allow non-<code>Serializable</code> values.  Enforces that the Map 
 * doesn't already include transient data.
 * 
 * @deprecated JDBCJobStores no longer prune out transient data.  If you
 * include non-Serializable values in the Map, you will now get an 
 * exception when attempting to store it in a database.
 */
public void setAllowsTransientData(boolean allowsTransientData) {

  if (containsTransientData() && !allowsTransientData) {
    throw new IllegalStateException(
      "Cannot set property 'allowsTransientData' to 'false' "
        + "when data map contains non-serializable objects.");
  }

  this.allowsTransientData = allowsTransientData;
}
origin: quartz-scheduler/quartz

/**
 * Tell the <code>StringKeyDirtyFlagMap</code> that it should
 * allow non-<code>Serializable</code> values.  Enforces that the Map 
 * doesn't already include transient data.
 * 
 * @deprecated JDBCJobStores no longer prune out transient data.  If you
 * include non-Serializable values in the Map, you will now get an 
 * exception when attempting to store it in a database.
 */
public void setAllowsTransientData(boolean allowsTransientData) {

  if (containsTransientData() && !allowsTransientData) {
    throw new IllegalStateException(
      "Cannot set property 'allowsTransientData' to 'false' "
        + "when data map contains non-serializable objects.");
  }

  this.allowsTransientData = allowsTransientData;
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * Tell the <code>StringKeyDirtyFlagMap</code> that it should
 * allow non-<code>Serializable</code> values.  Enforces that the Map 
 * doesn't already include transient data.
 * 
 * @deprecated JDBCJobStores no longer prune out transient data.  If you
 * include non-Serializable values in the Map, you will now get an 
 * exception when attempting to store it in a database.
 */
public void setAllowsTransientData(boolean allowsTransientData) {

  if (containsTransientData() && !allowsTransientData) {
    throw new IllegalStateException(
      "Cannot set property 'allowsTransientData' to 'false' "
        + "when data map contains non-serializable objects.");
  }

  this.allowsTransientData = allowsTransientData;
}
origin: quartz/quartz-all

/**
 * Tell the <code>StringKeyDirtyFlagMap</code> that it should
 * allow non-<code>Serializable</code> values.  Enforces that the Map 
 * doesn't already include transient data.
 * 
 * @deprecated JDBCJobStores no longer prune out transient data.  If you
 * include non-Serializable values in the Map, you will now get an 
 * exception when attempting to store it in a database.
 */
public void setAllowsTransientData(boolean allowsTransientData) {

  if (containsTransientData() && !allowsTransientData) {
    throw new IllegalStateException(
      "Cannot set property 'allowsTransientData' to 'false' "
        + "when data map contains non-serializable objects.");
  }

  this.allowsTransientData = allowsTransientData;
}
org.quartz.utilsStringKeyDirtyFlagMapcontainsTransientData

Javadoc

Determine whether any values in this Map do not implement Serializable. Always returns false if this Map is flagged to not allow transient data.

Popular methods of StringKeyDirtyFlagMap

  • get
  • getAllowsTransientData
    Whether the StringKeyDirtyFlagMap allows non-Serializable values.
  • getKeys
    Get a copy of the Map's String keys in an array of Strings.
  • keySet
  • put
    Adds the given boolean value to the StringKeyDirtyFlagMap.
  • remove
  • size
  • getWrappedMap

Popular in Java

  • Making http requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getSystemService (Context)
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Reference (javax.naming)
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • Table (org.hibernate.mapping)
    A relational table
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now