Package com.glyart.asql.bungeecord
Class ASQLBungeecordScheduler<T extends net.md_5.bungee.api.plugin.Plugin>
- java.lang.Object
-
- com.glyart.asql.bungeecord.ASQLBungeecordScheduler<T>
-
- 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 Summary
Constructors Constructor Description ASQLBungeecordScheduler()
-
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 Bungeecord.- Specified by:
sync
in interfacecom.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 interfacecom.glyart.asql.common.context.ContextScheduler
- Throws:
UnsupportedOperationException
- if called because Bungeecord context doesn't support synchronous context
-
-