Class ASQLBungeecordScheduler<T extends net.md_5.bungee.api.plugin.Plugin>

  • Type Parameters:
    T - An existing Plugin
    All Implemented Interfaces:
    com.glyart.asql.common.context.ContextScheduler

    public final class ASQLBungeecordScheduler<T extends net.md_5.bungee.api.plugin.Plugin>
    extends Object
    implements com.glyart.asql.common.context.ContextScheduler
    Represents a task scheduling behavior through a Bungeecord Context. There should be just one instance of ASQLBungeecordScheduler per Bungeecord Context.
    • Constructor Detail

      • ASQLBungeecordScheduler

        public ASQLBungeecordScheduler()
    • 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 Bungeecord.
        Specified by:
        sync in interface com.glyart.asql.common.context.ContextScheduler
        Throws:
        UnsupportedOperationException - if called because Bungeecord context doesn't support synchronous context
      • sync

        public void sync​(@NonNull
                         @NonNull Runnable runnable)
        Don't call this method. Sync context is unsupported on Bungeecord.
        Specified by:
        sync in interface com.glyart.asql.common.context.ContextScheduler
        Throws:
        UnsupportedOperationException - if called because Bungeecord context doesn't support synchronous context