CmsPublishQueue.asList
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using org.opencms.publish.CmsPublishQueue.asList (Showing top 4 results out of 315)

origin: org.opencms/opencms-core

/**
 * Returns the queue with still waiting publish jobs.<p>
 *
 * @return a list of {@link CmsPublishJobEnqueued} objects
 */
public List<CmsPublishJobEnqueued> getPublishQueue() {
  return m_publishEngine.getPublishQueue().asList();
}
origin: org.opencms/opencms-solr

/**
 * Returns the queue with still waiting publish jobs.<p>
 * 
 * @return a list of {@link CmsPublishJobEnqueued} objects
 */
public List getPublishQueue() {
  return m_publishEngine.getPublishQueue().asList();
}
origin: org.opencms/opencms-core

Iterator<CmsPublishJobEnqueued> itEnqueuedJobs = getPublishQueue().asList().iterator();
while (itEnqueuedJobs.hasNext()) {
  CmsPublishJobEnqueued enqueuedJob = itEnqueuedJobs.next();
origin: org.opencms/opencms-solr

Iterator itEnqueuedJobs = getPublishQueue().asList().iterator();
while (itEnqueuedJobs.hasNext()) {
  CmsPublishJobEnqueued enqueuedJob = (CmsPublishJobEnqueued)itEnqueuedJobs.next();
org.opencms.publishCmsPublishQueueasList

Javadoc

Returns an unmodifiable list representation of this queue.

Popular methods of CmsPublishQueue

  • <init>
    Default constructor, for an empty queue.
  • abortPublishJob
    Aborts the given publish job.
  • add
    Pushes a new publish job with the given information in publish queue. If possible, the publish job s
  • contains
    Checks if the given job is already in the queue, this does only check for the identical job.
  • getQueue
    Creates the buffer used as publish queue.
  • initialize
    Initializes the internal FIFO queue with publish jobs from the database.
  • isEmpty
    Checks if the queue is empty.
  • next
    Returns the next publish job to be published, removing it from the queue, or null if the queue is e
  • remove
    Removes the given job from the list.
  • update
    Updates the given job in the list.

Popular in Java

  • Running tasks concurrently on multiple threads
  • onCreateOptionsMenu (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • getSharedPreferences (Context)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • JFileChooser (javax.swing)

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)