當前位置: 首頁>>代碼示例>>Java>>正文


Java JobDetail.isDurable方法代碼示例

本文整理匯總了Java中org.quartz.JobDetail.isDurable方法的典型用法代碼示例。如果您正苦於以下問題:Java JobDetail.isDurable方法的具體用法?Java JobDetail.isDurable怎麽用?Java JobDetail.isDurable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.quartz.JobDetail的用法示例。


在下文中一共展示了JobDetail.isDurable方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: toCompositeData

import org.quartz.JobDetail; //導入方法依賴的package包/類
/**
 * @param jobDetail
 * @return CompositeData
 */
public static CompositeData toCompositeData(JobDetail jobDetail) {
    try {
        return new CompositeDataSupport(COMPOSITE_TYPE, ITEM_NAMES,
                new Object[] {
                        jobDetail.getKey().getName(),
                        jobDetail.getKey().getGroup(),
                        jobDetail.getDescription(),
                        jobDetail.getJobClass().getName(),
                        JobDataMapSupport.toTabularData(jobDetail
                                .getJobDataMap()), 
                        jobDetail.isDurable(),
                        jobDetail.requestsRecovery(), });
    } catch (OpenDataException e) {
        throw new RuntimeException(e);
    }
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:21,代碼來源:JobDetailSupport.java

示例2: toCompositeData

import org.quartz.JobDetail; //導入方法依賴的package包/類
/**
 * @param jobDetail
 * @return CompositeData
 */
public static CompositeData toCompositeData(JobDetail jobDetail) {
	try {
		return new CompositeDataSupport(COMPOSITE_TYPE, ITEM_NAMES,
				new Object[] {
						jobDetail.getName(),
						jobDetail.getGroup(),
						jobDetail.getDescription(),
						jobDetail.getJobClass().getName(),
						JobDataMapSupport.toTabularData(jobDetail
								.getJobDataMap()), jobDetail.isVolatile(),
						jobDetail.isDurable(),
						jobDetail.requestsRecovery(), });
	} catch (OpenDataException e) {
		throw new RuntimeException(e);
	}
}
 
開發者ID:AsuraTeam,項目名稱:asura,代碼行數:21,代碼來源:JobDetailSupport.java

示例3: addJob

import org.quartz.JobDetail; //導入方法依賴的package包/類
public void addJob(JobDetail jobDetail, boolean replace, boolean storeNonDurableWhileAwaitingScheduling) throws SchedulerException {
    validateState();

    if (!storeNonDurableWhileAwaitingScheduling && !jobDetail.isDurable()) {
        throw new SchedulerException(
                "Jobs added with no trigger must be durable.");
    }

    resources.getJobStore().storeJob(jobDetail, replace);
    notifySchedulerThread(0L);
    notifySchedulerListenersJobAdded(jobDetail);
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:13,代碼來源:QuartzScheduler.java

示例4: addJob

import org.quartz.JobDetail; //導入方法依賴的package包/類
/**
 * <p>
 * Add the given <code>Job</code> to the Scheduler - with no associated
 * <code>Trigger</code>. The <code>Job</code> will be 'dormant' until
 * it is scheduled with a <code>Trigger</code>, or <code>Scheduler.triggerJob()</code>
 * is called for it.
 * </p>
 * 
 * <p>
 * The <code>Job</code> must by definition be 'durable', if it is not,
 * SchedulerException will be thrown.
 * </p>
 * 
 * @throws SchedulerException
 *           if there is an internal Scheduler error, or if the Job is not
 *           durable, or a Job with the same name already exists, and
 *           <code>replace</code> is <code>false</code>.
 */
public void addJob(SchedulingContext ctxt, JobDetail jobDetail,
        boolean replace) throws SchedulerException {
    validateState();

    if (!jobDetail.isDurable() && !replace) {
        throw new SchedulerException(
                "Jobs added with no trigger must be durable.",
                SchedulerException.ERR_CLIENT_ERROR);
    }

    resources.getJobStore().storeJob(ctxt, jobDetail, replace);
    notifySchedulerThread(0L);
    notifySchedulerListenersJobAdded(jobDetail);
}
 
開發者ID:AsuraTeam,項目名稱:asura,代碼行數:33,代碼來源:QuartzScheduler.java


注:本文中的org.quartz.JobDetail.isDurable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。