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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? 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 Trigger getTrigger(String triggerName, String triggerGroup)
        throws SchedulerException {
        try {
            return getRemoteScheduler().getTrigger(schedCtxt, triggerName,
                    triggerGroup);
        } 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 int getTriggerState(String triggerName, String triggerGroup)
        throws SchedulerException {
        try {
            return getRemoteScheduler().getTriggerState(schedCtxt, triggerName,
                    triggerGroup);
        } 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 addCalendar(String calName, Calendar calendar, boolean replace, boolean updateTriggers)
        throws SchedulerException {
        try {
            getRemoteScheduler().addCalendar(schedCtxt, calName, calendar,
                    replace, updateTriggers);
        } 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 deleteCalendar(String calName) throws SchedulerException {
        try {
            return getRemoteScheduler().deleteCalendar(schedCtxt, calName);
        } 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 Calendar getCalendar(String calName) throws SchedulerException {
        try {
            return getRemoteScheduler().getCalendar(schedCtxt, calName);
        } 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[] getCalendarNames() throws SchedulerException {
        try {
            return getRemoteScheduler().getCalendarNames(schedCtxt);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    ///////////////////////////////////////////////////////////////////////////
    ///
    /// Listener-related Methods
    ///
    ///////////////////////////////////////////////////////////////////////////

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addGlobalJobListener(JobListener jobListener)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addJobListener(JobListener jobListener)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     * @deprecated Use <code>{@link #removeGlobalJobListener(String)}</code>
     */
    public boolean removeGlobalJobListener(JobListener jobListener)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeGlobalJobListener(String name)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeJobListener(String name) throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public List getGlobalJobListeners() throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public Set getJobListenerNames() throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public JobListener getGlobalJobListener(String name) throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }
    
    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public JobListener getJobListener(String name) throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addGlobalTriggerListener(TriggerListener triggerListener)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addTriggerListener(TriggerListener triggerListener)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     * @deprecated Use <code>{@link #removeGlobalTriggerListener(String)}</code>
     */
    public boolean removeGlobalTriggerListener(TriggerListener triggerListener)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeGlobalTriggerListener(String name)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeTriggerListener(String name) throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public List getGlobalTriggerListeners() throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public Set getTriggerListenerNames() throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public TriggerListener getGlobalTriggerListener(String name)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public TriggerListener getTriggerListener(String name)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public void addSchedulerListener(SchedulerListener schedulerListener)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public boolean removeSchedulerListener(SchedulerListener schedulerListener)
        throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /**
     * <p>
     * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>.
     * </p>
     */
    public List getSchedulerListeners() throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }

    /** 
     * @see org.quartz.Scheduler#getPausedTriggerGroups()
     */
    public Set getPausedTriggerGroups() throws SchedulerException {
        try {
            return getRemoteScheduler().getPausedTriggerGroups(schedCtxt);
        } catch (RemoteException re) {
            throw invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re);
        }
    }

    /**
     * @see org.quartz.Scheduler#interrupt(java.lang.String, java.lang.String)
     */
    public boolean interrupt(String jobName, String groupName) throws UnableToInterruptJobException  {
        try {
            return getRemoteScheduler().interrupt(schedCtxt, jobName, groupName);
        } catch (RemoteException re) {
            throw new UnableToInterruptJobException(invalidateHandleCreateException(
                    "Error communicating with remote scheduler.", re));
        } catch (SchedulerException se) {
            throw new UnableToInterruptJobException(se);
        }
    }

    /**
     * @see org.quartz.Scheduler#setJobFactory(org.quartz.spi.JobFactory)
     */
    public void setJobFactory(JobFactory factory) throws SchedulerException {
        throw new SchedulerException(
                "Operation not supported for remote schedulers.",
                SchedulerException.ERR_UNSUPPORTED_FUNCTION_IN_THIS_CONFIGURATION);
    }
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区四区中文字幕| 国产最新精品免费| 久久国产精品99精品国产 | 五月激情六月综合| 国产一区久久久| 欧美三级韩国三级日本一级| 国产免费久久精品| 午夜精品久久久| av网站免费线看精品| 日韩免费观看2025年上映的电影 | 午夜免费久久看| 国产69精品久久久久毛片| 欧美手机在线视频| 国产精品久久久久久妇女6080| 麻豆精品在线看| 欧美性一级生活| 中文字幕制服丝袜一区二区三区| 国产又粗又猛又爽又黄91精品| 欧美日韩电影在线| 亚洲精品成人悠悠色影视| 高清在线观看日韩| 久久视频一区二区| 九色porny丨国产精品| 欧美一区午夜视频在线观看| 午夜一区二区三区在线观看| 色综合天天综合在线视频| 中文一区在线播放| 成人激情小说网站| 欧美国产精品v| 国产一区二区不卡| 2020国产精品自拍| 国产乱人伦精品一区二区在线观看| 欧美一区二区视频在线观看 | 中文字幕一区二区在线播放 | 一本色道**综合亚洲精品蜜桃冫| 中文字幕av一区二区三区高| 国产成人av电影在线| 欧美激情综合五月色丁香小说| 国产呦萝稀缺另类资源| 国产亚洲精品aa午夜观看| 国产一区激情在线| 欧美韩国日本综合| 色综合婷婷久久| 一区二区三区在线免费播放| 欧美日韩成人在线一区| 日韩电影免费在线观看网站| 91精品国产91综合久久蜜臀| 老司机精品视频导航| 久久综合九色综合97婷婷| 国产99久久久精品| 亚洲婷婷在线视频| 欧美日韩国产精选| 看电影不卡的网站| 日本一区二区三区国色天香| 成人av网站免费| 一区二区三国产精华液| 欧美一区二区三区免费观看视频| 久久99精品久久久久久| 欧美高清在线精品一区| 色就色 综合激情| 日韩电影在线一区| 国产校园另类小说区| av电影天堂一区二区在线观看| 亚洲欧美一区二区久久| 91精品黄色片免费大全| 成人国产精品免费观看视频| 亚洲一区自拍偷拍| 国产亚洲一区二区三区在线观看 | 亚洲欧美日韩国产一区二区三区| 欧美日韩一区中文字幕| 美国十次综合导航| 亚洲欧美激情视频在线观看一区二区三区 | 91精品国产色综合久久久蜜香臀| 国产在线不卡视频| 亚洲一二三区不卡| 欧美国产精品一区| 7777精品伊人久久久大香线蕉的| 国产很黄免费观看久久| 亚洲伊人伊色伊影伊综合网| 精品久久国产97色综合| 99re这里都是精品| 九九国产精品视频| 亚洲aaa精品| 国产精品沙发午睡系列990531| 欧美三级电影一区| 成年人国产精品| 久久99国产精品尤物| 亚洲图片一区二区| 国产精品亲子伦对白| 欧美成人video| 欧美日韩中文字幕精品| 成人aa视频在线观看| 久久91精品久久久久久秒播| 亚洲一卡二卡三卡四卡无卡久久| 欧美精品一区二区久久久| 在线视频一区二区三区| 丰满少妇在线播放bd日韩电影| 日韩中文字幕1| 亚洲黄色免费网站| 国产精品久久夜| 国产婷婷色一区二区三区四区| 欧美一区二区在线免费观看| 在线观看一区日韩| 色综合天天综合在线视频| 成人免费黄色大片| 国产·精品毛片| 国产麻豆9l精品三级站| 国产最新精品精品你懂的| 舔着乳尖日韩一区| 香蕉乱码成人久久天堂爱免费| 一区二区激情小说| 亚洲欧美日韩国产成人精品影院| 国产精品久久久爽爽爽麻豆色哟哟| 国产日韩精品一区| 久久精品一区二区三区av| 精品国产乱码久久久久久老虎| 制服丝袜激情欧洲亚洲| 91精品国产综合久久福利软件| 91视频www| 欧美视频一区在线| 在线电影欧美成精品| 777奇米成人网| 日韩一级片在线观看| 欧美一区二区黄| 日韩欧美电影一二三| 精品国产成人系列| 国产欧美日韩在线看| 中文字幕一区三区| 亚洲综合激情小说| 日韩av电影一区| 久久激五月天综合精品| 国产一区三区三区| 欧美专区日韩专区| 欧美人xxxx| 欧美大片顶级少妇| 中文字幕av一区二区三区| 一区视频在线播放| 亚洲综合丁香婷婷六月香| 蜜桃久久久久久| 粉嫩高潮美女一区二区三区| 99精品视频一区| 欧美一区二区三区精品| 久久九九久久九九| 亚洲综合激情网| 国产一区激情在线| 日本韩国欧美三级| 欧美一区二区三区性视频| 久久精品夜色噜噜亚洲aⅴ| 综合亚洲深深色噜噜狠狠网站| 亚洲一级片在线观看| 国产在线精品一区二区不卡了| www.66久久| 欧美一区二区三区白人| 中文字幕一区二区三区精华液| 婷婷开心激情综合| 成人午夜激情视频| 欧美一级视频精品观看| 国产精品麻豆网站| 久久精品国产网站| 色综合久久久久综合体桃花网| 精品久久久影院| 亚洲国产欧美日韩另类综合| 国产精品伊人色| 欧美日韩精品专区| 中文一区二区在线观看| 日本成人在线网站| 色88888久久久久久影院野外| 久久免费看少妇高潮| 亚洲欧美日本在线| 大陆成人av片| 日韩视频一区二区在线观看| 亚洲五月六月丁香激情| 不卡视频一二三| 国产欧美一二三区| 久久黄色级2电影| 欧美日韩在线直播| 亚洲天堂久久久久久久| 国产精品正在播放| 日韩一级片网址| 婷婷六月综合亚洲| 欧美在线观看一区| 亚洲毛片av在线| av亚洲精华国产精华精| 国产亚洲精久久久久久| 激情文学综合丁香| 欧美一区二区三区视频在线| 亚洲成av人片一区二区梦乃| 91麻豆福利精品推荐| 国产精品免费丝袜| 丁香激情综合国产| www激情久久| 精品一区二区在线看| 欧美一区二区三区日韩| 日本不卡一区二区三区| 欧美老女人第四色| 日韩不卡手机在线v区| 欧美另类变人与禽xxxxx| 亚洲国产色一区| 欧美老肥妇做.爰bbww视频| 天天色图综合网|