Record Class BukkitDisposable
java.lang.Object
java.lang.Record
io.github.simplexdevelopment.scheduler.BukkitDisposable
- All Implemented Interfaces:
reactor.core.Disposable
public record BukkitDisposable(org.bukkit.scheduler.BukkitTask task)
extends Record
implements reactor.core.Disposable
-
Nested Class Summary
Nested classes/interfaces inherited from interface reactor.core.Disposable
reactor.core.Disposable.Composite, reactor.core.Disposable.Swap
-
Field Summary
Modifier and TypeFieldDescriptionprivate final org.bukkit.scheduler.BukkitTask
The field for thetask
record component. -
Constructor Summary
ConstructorDescriptionBukkitDisposable
(org.bukkit.scheduler.BukkitTask task) Creates an instance of aBukkitDisposable
record class. -
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Disposes of the task upstream on the Bukkit scheduler.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
Checks if the task is cancelled.org.bukkit.scheduler.BukkitTask
task()
Returns the value of thetask
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
task
private final org.bukkit.scheduler.BukkitTask taskThe field for thetask
record component.
-
-
Constructor Details
-
BukkitDisposable
public BukkitDisposable(org.bukkit.scheduler.BukkitTask task) Creates an instance of aBukkitDisposable
record class.- Parameters:
task
- the value for thetask
record component
-
-
Method Details
-
dispose
public void dispose()Disposes of the task upstream on the Bukkit scheduler.- Specified by:
dispose
in interfacereactor.core.Disposable
-
isDisposed
public boolean isDisposed()Checks if the task is cancelled.- Specified by:
isDisposed
in interfacereactor.core.Disposable
- Returns:
- true if the task is cancelled, false otherwise.
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
task
public org.bukkit.scheduler.BukkitTask task()Returns the value of thetask
record component.- Returns:
- the value of the
task
record component
-