Uses of Interface
org.red5.server.api.scheduling.IScheduledJob
Packages that use IScheduledJob
Package
Description
-
Uses of IScheduledJob in org.red5.server.api.scheduling
Methods in org.red5.server.api.scheduling with parameters of type IScheduledJobModifier and TypeMethodDescriptionISchedulingService.addScheduledJob(int interval, IScheduledJob job) Schedule a job for periodic execution.ISchedulingService.addScheduledJobAfterDelay(int interval, IScheduledJob job, int delay) Schedule a job for periodic execution which will start after the specified delay.ISchedulingService.addScheduledOnceJob(long timeDelta, IScheduledJob job) Schedule a job for single execution in the future.ISchedulingService.addScheduledOnceJob(Date date, IScheduledJob job) Schedule a job for single execution at a given date. -
Uses of IScheduledJob in org.red5.server.api.stream
Methods in org.red5.server.api.stream with parameters of type IScheduledJobModifier and TypeMethodDescriptionISubscriberStream.scheduleOnceJob(IScheduledJob job) Schedule a job to be executed only once after a 10ms delay.ISubscriberStream.scheduleWithFixedDelay(IScheduledJob job, int interval) Schedule a job to be executed regularly at the given interval. -
Uses of IScheduledJob in org.red5.server.scheduling
Methods in org.red5.server.scheduling with parameters of type IScheduledJobModifier and TypeMethodDescriptionJDKSchedulingService.addScheduledJob(int interval, IScheduledJob job) Schedule a job for periodic execution.JDKSchedulingService.addScheduledJobAfterDelay(int interval, IScheduledJob job, int delay) Schedule a job for periodic execution which will start after the specified delay.JDKSchedulingService.addScheduledOnceJob(long timeDelta, IScheduledJob job) Schedule a job for single execution in the future.JDKSchedulingService.addScheduledOnceJob(Date date, IScheduledJob job) Schedule a job for single execution at a given date. -
Uses of IScheduledJob in org.red5.server.stream
Classes in org.red5.server.stream that implement IScheduledJobModifier and TypeClassDescriptionclassHandles notifications in a separate thread.classHandles notifications in a separate thread.Methods in org.red5.server.stream with parameters of type IScheduledJobModifier and TypeMethodDescriptionPlaylistSubscriberStream.scheduleOnceJob(IScheduledJob job) Schedule a job to be executed only once after a 10ms delay.SingleItemSubscriberStream.scheduleOnceJob(IScheduledJob job) Schedule a job to be executed only once after a 10ms delay.PlaylistSubscriberStream.scheduleWithFixedDelay(IScheduledJob job, int interval) Schedule a job to be executed regularly at the given interval.SingleItemSubscriberStream.scheduleWithFixedDelay(IScheduledJob job, int interval) Schedule a job to be executed regularly at the given interval.