亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? remotescheduler.java

?? Java中非常實用流控制工具
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void addJob(JobDetail jobDetail, boolean replace)
        throws SchedulerException {
        try {
            getRemoteScheduler().addJob(schedCtxt, jobDetail, replace);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public boolean deleteJob(String jobName, String groupName)
        throws SchedulerException {
        try {
            return getRemoteScheduler()
                    .deleteJob(schedCtxt, jobName, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public boolean unscheduleJob(String triggerName, String groupName)
        throws SchedulerException {
        try {
            return getRemoteScheduler().unscheduleJob(schedCtxt, triggerName,
                    groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public Date rescheduleJob(String triggerName,
            String groupName, Trigger newTrigger) throws SchedulerException {
        try {
            return getRemoteScheduler().rescheduleJob(schedCtxt, triggerName,
                    groupName, newTrigger);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }
    
    
    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void triggerJob(String jobName, String groupName)
        throws SchedulerException {
        triggerJob(jobName, groupName, null);
    }
    
    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void triggerJob(String jobName, String groupName, JobDataMap data)
        throws SchedulerException {
        try {
            getRemoteScheduler().triggerJob(schedCtxt, jobName, groupName, data);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void triggerJobWithVolatileTrigger(String jobName, String groupName)
        throws SchedulerException {
        triggerJobWithVolatileTrigger(jobName, groupName, null);
    }
    
    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void triggerJobWithVolatileTrigger(String jobName, String groupName, JobDataMap data)
        throws SchedulerException {
        try {
            getRemoteScheduler().triggerJobWithVolatileTrigger(schedCtxt,
                    jobName, groupName, data);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void pauseTrigger(String triggerName, String groupName)
        throws SchedulerException {
        try {
            getRemoteScheduler()
                    .pauseTrigger(schedCtxt, triggerName, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void pauseTriggerGroup(String groupName) throws SchedulerException {
        try {
            getRemoteScheduler().pauseTriggerGroup(schedCtxt, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void pauseJob(String jobName, String groupName)
        throws SchedulerException {
        try {
            getRemoteScheduler().pauseJob(schedCtxt, jobName, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void pauseJobGroup(String groupName) throws SchedulerException {
        try {
            getRemoteScheduler().pauseJobGroup(schedCtxt, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeTrigger(String triggerName, String groupName)
        throws SchedulerException {
        try {
            getRemoteScheduler().resumeTrigger(schedCtxt, triggerName,
                    groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeTriggerGroup(String groupName) throws SchedulerException {
        try {
            getRemoteScheduler().resumeTriggerGroup(schedCtxt, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeJob(String jobName, String groupName)
        throws SchedulerException {
        try {
            getRemoteScheduler().resumeJob(schedCtxt, jobName, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeJobGroup(String groupName) throws SchedulerException {
        try {
            getRemoteScheduler().resumeJobGroup(schedCtxt, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void pauseAll() throws SchedulerException {
        try {
            getRemoteScheduler().pauseAll(schedCtxt);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public void resumeAll() throws SchedulerException {
        try {
            getRemoteScheduler().resumeAll(schedCtxt);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public String[] getJobGroupNames() throws SchedulerException {
        try {
            return getRemoteScheduler().getJobGroupNames(schedCtxt);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public String[] getJobNames(String groupName) throws SchedulerException {
        try {
            return getRemoteScheduler().getJobNames(schedCtxt, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public Trigger[] getTriggersOfJob(String jobName, String groupName)
        throws SchedulerException {
        try {
            return getRemoteScheduler().getTriggersOfJob(schedCtxt, jobName,
                    groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public String[] getTriggerGroupNames() throws SchedulerException {
        try {
            return getRemoteScheduler().getTriggerGroupNames(schedCtxt);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public String[] getTriggerNames(String groupName) throws SchedulerException {
        try {
            return getRemoteScheduler().getTriggerNames(schedCtxt, groupName);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>,
     * passing the <code>SchedulingContext</code> associated with this
     * instance.
     * </p>
     */
    public JobDetail getJobDetail(String jobName, String jobGroup)
        throws SchedulerException {
        try {
            return getRemoteScheduler().getJobDetail(schedCtxt, jobName,
                    jobGroup);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品视频色一区| 成人免费看视频| 91最新地址在线播放| 日韩激情av在线| 国产精品的网站| 亚洲国产色一区| 成人av午夜影院| 欧美精品一区二| 日韩国产在线观看一区| 99在线精品观看| 中文字幕第一页久久| 奇米亚洲午夜久久精品| 在线观看日韩一区| 国产精品天天看| 国产精品资源网| 精品国产一区a| 日韩vs国产vs欧美| 欧美在线视频你懂得| 中文字幕一区二区三区四区 | 一区二区视频免费在线观看| 国产精品自拍在线| 久久亚洲一区二区三区四区| 欧美aa在线视频| 欧美一区二区美女| 日本亚洲电影天堂| 欧美精品一级二级三级| 亚洲一本大道在线| 欧美羞羞免费网站| 亚洲自拍另类综合| 在线一区二区视频| 亚洲综合一二区| 色综合中文综合网| 日韩av网站在线观看| 欧美视频一区二区三区| 亚洲精品第一国产综合野| 色综合色狠狠天天综合色| 亚洲日穴在线视频| 色综合视频一区二区三区高清| 亚洲视频一区二区在线| 国产精品一区二区在线观看不卡| 久久久蜜桃精品| 粉嫩高潮美女一区二区三区 | 久久亚洲一区二区三区四区| 国产成人精品综合在线观看| 国产精品午夜春色av| 色综合一个色综合亚洲| 亚洲成人一二三| 欧美一级黄色录像| 国产成人综合精品三级| 亚洲色图视频免费播放| 欧美日韩一区二区三区高清| 蜜臀va亚洲va欧美va天堂| 久久蜜桃一区二区| 91一区二区在线| 五月激情丁香一区二区三区| 日韩一区二区在线观看| 成人动漫视频在线| 亚洲电影在线免费观看| 久久青草国产手机看片福利盒子| 成人在线视频首页| 亚洲成人免费视频| 久久综合九色综合欧美就去吻| 成人a区在线观看| 三级亚洲高清视频| 欧美激情艳妇裸体舞| 91美女视频网站| 精品一区二区三区香蕉蜜桃| 中文字幕一区二区在线观看| 欧美性受极品xxxx喷水| 久久精品久久久精品美女| 亚洲婷婷综合色高清在线| 欧美一级xxx| 色999日韩国产欧美一区二区| 免费观看91视频大全| 国产精品乱码一区二区三区软件| 精品视频一区二区不卡| 高潮精品一区videoshd| 日韩黄色小视频| 亚洲欧美偷拍另类a∨色屁股| 日韩欧美国产1| 在线视频你懂得一区| 国产精品资源在线| 日本sm残虐另类| 亚洲欧美另类小说| 国产午夜精品一区二区| 欧美夫妻性生活| 在线观看91精品国产入口| 成人综合在线网站| 国产一区二区美女诱惑| 日本午夜一区二区| 亚洲一区二区三区四区的| 亚洲国产成人一区二区三区| 精品少妇一区二区三区视频免付费| 欧美在线免费视屏| youjizz久久| 国产精品一色哟哟哟| 欧美a级一区二区| 亚洲欧美激情小说另类| 国产精品剧情在线亚洲| xnxx国产精品| 日韩你懂的在线观看| 欧美区一区二区三区| 91黄色免费版| 在线免费观看日本欧美| 色综合色狠狠天天综合色| av电影天堂一区二区在线观看| 福利一区二区在线观看| 国产激情视频一区二区三区欧美 | 亚洲精品中文在线影院| 日本乱人伦aⅴ精品| 国产白丝网站精品污在线入口| 麻豆成人久久精品二区三区红| 视频一区二区三区入口| 亚洲成人三级小说| 日韩精品1区2区3区| 日本午夜精品一区二区三区电影| 性欧美大战久久久久久久久| 亚洲高清免费在线| 亚洲成人高清在线| 日韩电影在线观看一区| 午夜激情一区二区| 日本中文一区二区三区| 美女视频第一区二区三区免费观看网站| 亚洲国产精品久久艾草纯爱| 一区二区三区欧美在线观看| 亚洲乱码国产乱码精品精的特点 | 亚洲精品成人精品456| 色欧美88888久久久久久影院| 99精品视频中文字幕| 91色在线porny| 欧美伊人久久大香线蕉综合69| 欧美三级电影精品| 91精品国产色综合久久| 久久亚洲免费视频| 中文字幕的久久| 亚洲一区二区在线免费观看视频| 亚洲一二三区在线观看| 热久久国产精品| 国产一区二区在线视频| 91在线免费看| 欧美午夜电影在线播放| 日韩精品专区在线影院重磅| 国产欧美一区二区在线| 亚洲视频在线一区| 日韩不卡免费视频| 国产电影一区在线| 欧美午夜精品一区| 日韩精品一区二区三区四区| 国产精品久久久久久久久快鸭| 亚洲男同性恋视频| 蜜桃视频一区二区三区在线观看 | 欧美tk丨vk视频| 国产人久久人人人人爽| 国产福利精品一区二区| 色88888久久久久久影院按摩 | 播五月开心婷婷综合| 欧美三级蜜桃2在线观看| 精品久久国产老人久久综合| 国产午夜精品美女毛片视频| 亚洲图片欧美色图| 精品在线一区二区三区| 91亚洲精品乱码久久久久久蜜桃| 欧美精品久久一区二区三区| 国产精品视频第一区| 免费的成人av| 色综合中文字幕国产| 日韩一卡二卡三卡| 亚洲欧美另类小说视频| 国产aⅴ综合色| 精品免费视频一区二区| 亚洲一区二区美女| 成人app网站| 久久久久久一级片| 亚洲国产成人精品视频| 91亚洲大成网污www| 国产欧美一区二区精品久导航 | 国产成人超碰人人澡人人澡| 精品视频123区在线观看| 国产欧美一区二区三区网站| 久久精品国产免费| 精品婷婷伊人一区三区三| 亚洲欧洲日韩在线| 国产成人鲁色资源国产91色综| 欧美不卡一区二区| 日韩va欧美va亚洲va久久| 欧美综合久久久| 亚洲色图第一区| 91丝袜美女网| 亚洲特黄一级片| 一本色道久久综合亚洲91| 国产三级精品在线| 九九精品一区二区| 欧美va亚洲va在线观看蝴蝶网| 热久久国产精品| 欧美一级精品在线| 久久国产夜色精品鲁鲁99| 717成人午夜免费福利电影| 亚洲妇女屁股眼交7| 91福利社在线观看| 亚洲地区一二三色|