Uses of Interface
org.red5.server.api.scheduling.IScheduledJob
Package
Description
-
Uses of IScheduledJob in org.red5.server
Modifier and TypeClassDescriptionprivate final class
private final class
private final class
Used to indicate a scope was created.private final class
Used to indicate a scope was removed. -
Uses of IScheduledJob in org.red5.server.adapter
Modifier and TypeMethodDescriptionMultiThreadedApplicationAdapter.addScheduledJob
(int interval, IScheduledJob job) Wrapper around ISchedulingService, adds a scheduled job to be run periodically.MultiThreadedApplicationAdapter.addScheduledJobAfterDelay
(int interval, IScheduledJob job, int delay) Adds a scheduled job which starts after the specified delay period and fires periodically.MultiThreadedApplicationAdapter.addScheduledOnceJob
(long timeDelta, IScheduledJob job) Adds a scheduled job that's gonna be executed once.MultiThreadedApplicationAdapter.addScheduledOnceJob
(Date date, IScheduledJob job) Adds a scheduled job that's gonna be executed once on given date. -
Uses of IScheduledJob in org.red5.server.api.scheduling
Modifier 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 specifed 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
Modifier 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
Modifier and TypeMethodDescriptionQuartzSchedulingService.addScheduledJob
(int interval, IScheduledJob job) Schedule a job for periodic execution.QuartzSchedulingService.addScheduledJobAfterDelay
(int interval, IScheduledJob job, int delay) Schedule a job for periodic execution which will start after the specifed delay.QuartzSchedulingService.addScheduledOnceJob
(long timeDelta, IScheduledJob job) Schedule a job for single execution in the future.QuartzSchedulingService.addScheduledOnceJob
(Date date, IScheduledJob job) Schedule a job for single execution at a given date. -
Uses of IScheduledJob in org.red5.server.scope
Modifier and TypeClassDescriptionprivate class
Keeps the scope alive for a set number of seconds. -
Uses of IScheduledJob in org.red5.server.session
Modifier and TypeClassDescriptionprivate static final class
Quartz job to kill off old sessions -
Uses of IScheduledJob in org.red5.server.stream
Modifier and TypeClassDescriptionprivate class
private final class
Periodically triggered by executor to send messages to the client.class
Handles notifications in a separate thread.private class
class
Handles notifications in a separate thread.Modifier 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.