/** * <p> * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>. * </p> */ public boolean unscheduleJob(TriggerKey triggerKey) throws SchedulerException { try { return getRemoteScheduler().unscheduleJob(triggerKey); } catch (RemoteException re) { throw invalidateHandleCreateException( "Error communicating with remote scheduler.", re); } }
/** * <p> * Calls the equivalent method on the 'proxied' <code>QuartzScheduler</code>. * </p> */ public boolean unscheduleJob(TriggerKey triggerKey) throws SchedulerException { try { return getRemoteScheduler().unscheduleJob(triggerKey); } 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 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); } }