Tabnine Logo
RemotableQuartzScheduler.runningSince
Code IndexAdd Tabnine to your IDE (free)

How to use
runningSince
method
in
org.quartz.core.RemotableQuartzScheduler

Best Java code snippets using org.quartz.core.RemotableQuartzScheduler.runningSince (Showing top 8 results out of 315)

origin: quartz-scheduler/quartz

/**
 * Whether the scheduler has been started.  
 * 
 * <p>
 * Note: This only reflects whether <code>{@link #start()}</code> has ever
 * been called on this Scheduler, so it will return <code>true</code> even 
 * if the <code>Scheduler</code> is currently in standby mode or has been 
 * since shutdown.
 * </p>
 * 
 * @see #start()
 * @see #isShutdown()
 * @see #isInStandbyMode()
 */    
public boolean isStarted() throws SchedulerException {
  try {
    return (getRemoteScheduler().runningSince() != null);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }   
}

origin: quartz-scheduler/quartz

/**
 * Whether the scheduler has been started.  
 * 
 * <p>
 * Note: This only reflects whether <code>{@link #start()}</code> has ever
 * been called on this Scheduler, so it will return <code>true</code> even 
 * if the <code>Scheduler</code> is currently in standby mode or has been 
 * since shutdown.
 * </p>
 * 
 * @see #start()
 * @see #isShutdown()
 * @see #isInStandbyMode()
 */    
public boolean isStarted() throws SchedulerException {
  try {
    return (getRemoteScheduler().runningSince() != null);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }   
}

origin: quartz-scheduler/quartz

public SchedulerMetaData getMetaData() throws SchedulerException {
  try {
    RemotableQuartzScheduler sched = getRemoteScheduler();
    return new SchedulerMetaData(getSchedulerName(),
        getSchedulerInstanceId(), getClass(), true, isStarted(), 
        isInStandbyMode(), isShutdown(), sched.runningSince(), 
        sched.numJobsExecuted(), sched.getJobStoreClass(), 
        sched.supportsPersistence(), sched.isClustered(), sched.getThreadPoolClass(), 
        sched.getThreadPoolSize(), sched.getVersion());
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: quartz-scheduler/quartz

public SchedulerMetaData getMetaData() throws SchedulerException {
  try {
    RemotableQuartzScheduler sched = getRemoteScheduler();
    return new SchedulerMetaData(getSchedulerName(),
        getSchedulerInstanceId(), getClass(), true, isStarted(), 
        isInStandbyMode(), isShutdown(), sched.runningSince(), 
        sched.numJobsExecuted(), sched.getJobStoreClass(), 
        sched.supportsPersistence(), sched.isClustered(), sched.getThreadPoolClass(), 
        sched.getThreadPoolSize(), sched.getVersion());
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

/**
 * Whether the scheduler has been started.  
 * 
 * <p>
 * Note: This only reflects whether <code>{@link #start()}</code> has ever
 * been called on this Scheduler, so it will return <code>true</code> even 
 * if the <code>Scheduler</code> is currently in standby mode or has been 
 * since shutdown.
 * </p>
 * 
 * @see #start()
 * @see #isShutdown()
 * @see #isInStandbyMode()
 */    
public boolean isStarted() throws SchedulerException {
  try {
    return (getRemoteScheduler().runningSince() != null);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }   
}
 
origin: quartz/quartz-all

/**
 * Whether the scheduler has been started.  
 * 
 * <p>
 * Note: This only reflects whether <code>{@link #start()}</code> has ever
 * been called on this Scheduler, so it will return <code>true</code> even 
 * if the <code>Scheduler</code> is currently in standby mode or has been 
 * since shutdown.
 * </p>
 * 
 * @see #start()
 * @see #isShutdown()
 * @see #isInStandbyMode()
 */    
public boolean isStarted() throws SchedulerException {
  try {
    return (getRemoteScheduler().runningSince() != null);
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }   
}

origin: quartz/quartz-all

public SchedulerMetaData getMetaData() throws SchedulerException {
  try {
    RemotableQuartzScheduler sched = getRemoteScheduler();
    return new SchedulerMetaData(getSchedulerName(),
        getSchedulerInstanceId(), getClass(), true, isStarted(), 
        isInStandbyMode(), isShutdown(), sched.runningSince(), 
        sched.numJobsExecuted(), sched.getJobStoreClass(), 
        sched.supportsPersistence(), sched.getThreadPoolClass(), 
        sched.getThreadPoolSize(), sched.getVersion());
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

public SchedulerMetaData getMetaData() throws SchedulerException {
  try {
    RemotableQuartzScheduler sched = getRemoteScheduler();
    return new SchedulerMetaData(getSchedulerName(),
        getSchedulerInstanceId(), getClass(), true, isStarted(), 
        isInStandbyMode(), isShutdown(), sched.runningSince(), 
        sched.numJobsExecuted(), sched.getJobStoreClass(), 
        sched.supportsPersistence(), sched.getThreadPoolClass(), 
        sched.getThreadPoolSize(), sched.getVersion());
  } catch (RemoteException re) {
    throw invalidateHandleCreateException(
        "Error communicating with remote scheduler.", re);
  }
}
org.quartz.coreRemotableQuartzSchedulerrunningSince

Popular methods of RemotableQuartzScheduler

  • addCalendar
  • addJob
  • deleteCalendar
  • deleteJob
  • getCalendar
  • getCalendarNames
  • getCurrentlyExecutingJobs
  • getJobDetail
  • getJobGroupNames
  • getJobStoreClass
  • getPausedTriggerGroups
  • getSchedulerContext
  • getPausedTriggerGroups,
  • getSchedulerContext,
  • getSchedulerInstanceId,
  • getSchedulerName,
  • getThreadPoolClass,
  • getThreadPoolSize,
  • getTrigger,
  • getTriggerGroupNames,
  • getTriggerState,
  • getTriggersOfJob

Popular in Java

  • Finding current android device location
  • getContentResolver (Context)
  • getSystemService (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • String (java.lang)
  • Path (java.nio.file)
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now