Interface SortedSnowflakeCacheView<T extends Comparable<? super T> & ISnowflake>

Type Parameters:
T - The entity type
All Superinterfaces:
CacheView<T>, Iterable<T>, SnowflakeCacheView<T>
All Known Subinterfaces:
SortedChannelCacheView<T>

public interface SortedSnowflakeCacheView<T extends Comparable<? super T> & ISnowflake> extends SnowflakeCacheView<T>
Specialized CacheView for entities that occur in a specified order.
In this specialization Iterable.forEach(Consumer) will copy the underlying data store in order to preserve order on iterations, use forEachUnordered(Consumer) to avoid this overhead.
See Also: