Package-level declarations

Contains Bukkit scheduler integration for BetterModel tasks.

This package maps the shared scheduler contracts from the API module onto the Bukkit scheduler model. Bukkit platform implementations use it to execute model updates, asynchronous work, and delayed tasks through Bukkit-compatible task handles.

Example:


BukkitModelScheduler scheduler = ...;
var task = scheduler.async(runnable);

Since

3.2.0

Types

Link copied to clipboard
Represents a Bukkit-specific scheduler for model tasks.