public final class ServerTickEvents extends Object
Modifier and Type | Class and Description |
---|---|
static interface |
ServerTickEvents.EndTick |
static interface |
ServerTickEvents.EndWorldTick |
static interface |
ServerTickEvents.StartTick |
static interface |
ServerTickEvents.StartWorldTick |
Modifier and Type | Field and Description |
---|---|
static Event<ServerTickEvents.EndTick> |
END_SERVER_TICK
Called at the end of the server tick.
|
static Event<ServerTickEvents.EndWorldTick> |
END_WORLD_TICK
Called at the end of a ServerWorld's tick.
|
static Event<ServerTickEvents.StartTick> |
START_SERVER_TICK
Called at the start of the server tick.
|
static Event<ServerTickEvents.StartWorldTick> |
START_WORLD_TICK
Called at the start of a ServerWorld's tick.
|
public static final Event<ServerTickEvents.StartTick> START_SERVER_TICK
public static final Event<ServerTickEvents.EndTick> END_SERVER_TICK
public static final Event<ServerTickEvents.StartWorldTick> START_WORLD_TICK
public static final Event<ServerTickEvents.EndWorldTick> END_WORLD_TICK
End of world tick may be used to start async computations for the next tick.