Class 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 Detail

      • ASQLVelocityScheduler

        public ASQLVelocityScheduler()
    • 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 interface com.glyart.asql.common.context.ContextScheduler
        Parameters:
        runnable - The task to run
        delay - the ticks to wait before running the task for the first time
        period - the ticks to wait before each run
      • async

        public void async​(@NonNull
                          @NonNull Runnable runnable)
        Specified by:
        async in interface com.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 interface com.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 interface com.glyart.asql.common.context.ContextScheduler
        Throws:
        UnsupportedOperationException - if called because Velocity context doesn't support synchronous context