Uses of Interface
org.red5.server.api.scheduling.IScheduledJob
Packages that use IScheduledJob
Package
Description
-
Uses of IScheduledJob in org.red5.server
Classes in org.red5.server that implement IScheduledJobModifier 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
Methods in org.red5.server.adapter with parameters of type IScheduledJobModifier 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
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 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
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 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
Classes in org.red5.server.scope that implement IScheduledJobModifier and TypeClassDescriptionprivate class
Keeps the scope alive for a set number of seconds. -
Uses of IScheduledJob in org.red5.server.session
Classes in org.red5.server.session that implement IScheduledJobModifier and TypeClassDescriptionprivate static final class
Quartz job to kill off old sessions -
Uses of IScheduledJob in org.red5.server.stream
Classes in org.red5.server.stream that implement IScheduledJobModifier 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.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.