Package com.glyart.asql.velocity
Class ASQLVelocityScheduler<T>
- java.lang.Object
-
- com.glyart.asql.velocity.ASQLVelocityScheduler<T>
-
- Type Parameters:
T
- An existing Plugin
- All Implemented Interfaces:
com.glyart.asql.common.context.ContextScheduler
public final class ASQLVelocityScheduler<T> extends Object implements com.glyart.asql.common.context.ContextScheduler
Represents a task scheduling behavior through a Velocity Context. There should be just one instance of ASQLVelocityScheduler per Velocity Context.
-
-
Constructor Summary
Constructors Constructor Description ASQLVelocityScheduler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
async(@NonNull Runnable runnable)
void
async(@NonNull Runnable runnable, long delay, long period)
Executes an asynchronous repeating task every given milliseconds, after the given milliseconds delay time.void
sync(@NonNull Runnable runnable)
Don't call this method.void
sync(@NonNull Runnable runnable, long delay, long period)
Don't call this method.
-
-
-
Method Detail
-
async
public void async(@NonNull @NonNull Runnable runnable, long delay, long period)
Executes an asynchronous repeating task every given milliseconds, after the given milliseconds delay time.- Specified by:
async
in interfacecom.glyart.asql.common.context.ContextScheduler
- Parameters:
runnable
- The task to rundelay
- the ticks to wait before running the task for the first timeperiod
- the ticks to wait before each run
-
async
public void async(@NonNull @NonNull Runnable runnable)
- Specified by:
async
in interfacecom.glyart.asql.common.context.ContextScheduler
-
sync
public void sync(@NonNull @NonNull Runnable runnable, long delay, long period)
Don't call this method. Sync context is unsupported on Velocity.- Specified by:
sync
in interfacecom.glyart.asql.common.context.ContextScheduler
- Throws:
UnsupportedOperationException
- if called because Velocity context doesn't support synchronous context
-
sync
public void sync(@NonNull @NonNull Runnable runnable)
Don't call this method. Sync context is unsupported on Velocity.- Specified by:
sync
in interfacecom.glyart.asql.common.context.ContextScheduler
- Throws:
UnsupportedOperationException
- if called because Velocity context doesn't support synchronous context
-
-