Package net.minecraftforge.common.world
Class ForgeChunkManager.TicketTracker<T extends Comparable<? super T>>
java.lang.Object
net.minecraftforge.common.world.ForgeChunkManager.TicketTracker<T>
- Enclosing class:
- ForgeChunkManager
Helper class to manage tracking and handling loaded tickets.
-
Field Summary
Modifier and TypeFieldDescriptionprivate final Map<ForgeChunkManager.TicketOwner<T>,
it.unimi.dsi.fastutil.longs.LongSet> private final Map<ForgeChunkManager.TicketOwner<T>,
it.unimi.dsi.fastutil.longs.LongSet> -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprivate boolean
add
(ForgeChunkManager.TicketOwner<T> owner, long chunk, boolean ticking) Map<ForgeChunkManager.TicketOwner<T>,
it.unimi.dsi.fastutil.longs.LongSet> Gets an unmodifiable view of the tracked chunks.private Map<ForgeChunkManager.TicketOwner<T>,
it.unimi.dsi.fastutil.longs.LongSet> getTickets
(boolean ticking) Map<ForgeChunkManager.TicketOwner<T>,
it.unimi.dsi.fastutil.longs.LongSet> Gets an unmodifiable view of the tracked fully ticking chunks.boolean
isEmpty()
Checks if this tracker is empty.private boolean
remove
(ForgeChunkManager.TicketOwner<T> owner, long chunk, boolean ticking)
-
Field Details
-
chunks
private final Map<ForgeChunkManager.TicketOwner<T extends Comparable<? super T>>,it.unimi.dsi.fastutil.longs.LongSet> chunks -
tickingChunks
private final Map<ForgeChunkManager.TicketOwner<T extends Comparable<? super T>>,it.unimi.dsi.fastutil.longs.LongSet> tickingChunks
-
-
Constructor Details
-
TicketTracker
public TicketTracker()
-
-
Method Details
-
getChunks
Gets an unmodifiable view of the tracked chunks. -
getTickingChunks
Gets an unmodifiable view of the tracked fully ticking chunks. -
isEmpty
public boolean isEmpty()Checks if this tracker is empty.- Returns:
true
if there are no chunks or ticking chunks being tracked.
-
getTickets
private Map<ForgeChunkManager.TicketOwner<T>,it.unimi.dsi.fastutil.longs.LongSet> getTickets(boolean ticking) -
remove
- Returns:
true
if the state changed.
-
add
- Returns:
true
if the state changed.
-