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
An abstraction of the
BukkitTask class which allows this object to be used with Reactor.-
Nested Class Summary
Nested classes/interfaces inherited from interface reactor.core.Disposable
reactor.core.Disposable.Composite, reactor.core.Disposable.Swap -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final org.bukkit.scheduler.BukkitTaskThe field for thetaskrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionBukkitDisposable(org.bukkit.scheduler.BukkitTask task) Creates an instance of aBukkitDisposablerecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoiddispose()Disposes of the task upstream on the Bukkit scheduler.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanChecks if the task is cancelled.org.bukkit.scheduler.BukkitTasktask()Returns the value of thetaskrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
task
private final org.bukkit.scheduler.BukkitTask taskThe field for thetaskrecord component.
-
-
Constructor Details
-
BukkitDisposable
public BukkitDisposable(org.bukkit.scheduler.BukkitTask task) Creates an instance of aBukkitDisposablerecord class.- Parameters:
task- the value for thetaskrecord component
-
-
Method Details
-
dispose
public void dispose()Disposes of the task upstream on the Bukkit scheduler.- Specified by:
disposein interfacereactor.core.Disposable
-
isDisposed
public boolean isDisposed()Checks if the task is cancelled.- Specified by:
isDisposedin 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 thetaskrecord component.- Returns:
- the value of the
taskrecord component
-