Uses of Class
tech.guilhermekaua.spigotboot.inventoryapi.internal.state.TokenTable
Packages that use TokenTable
Package
Description
The spigot-boot inventory framework (3.0.0): view-based inventories with typed per-phase
contexts, reactive state, and declarative pagination.
-
Uses of TokenTable in tech.guilhermekaua.spigotboot.inventoryapi
Methods in tech.guilhermekaua.spigotboot.inventoryapi that return TokenTableModifier and TypeMethodDescriptionfinal @NotNull TokenTableView.tokenTable()Returns this view's token table; used by the engine to size per-session state storage and to freeze token registration. -
Uses of TokenTable in tech.guilhermekaua.spigotboot.inventoryapi.internal.pagination
Constructors in tech.guilhermekaua.spigotboot.inventoryapi.internal.pagination with parameters of type TokenTableModifierConstructorDescriptionPaginationBuilderImpl(@NotNull View owner, @NotNull TokenTable table, @NotNull PaginationSourceSpec<T> source) Creates a builder for one pagination declaration of a view.PaginationImpl(@NotNull View owner, @NotNull TokenTable table, @NotNull PaginationSpec<T> spec) Creates and registers the token; called byPaginationBuilderImpl.build(), so registration happens at build time. -
Uses of TokenTable in tech.guilhermekaua.spigotboot.inventoryapi.internal.state
Constructors in tech.guilhermekaua.spigotboot.inventoryapi.internal.state with parameters of type TokenTableModifierConstructorDescriptionInitialStateImpl(@NotNull View owner, @NotNull TokenTable table, @NotNull String key, @NotNull Class<T> type) Creates and registers the token.LazyStateImpl(@NotNull View owner, @NotNull TokenTable table, @NotNull Function<ViewContext, T> computation) Creates and registers the token.MutableStateImpl(@NotNull View owner, @NotNull TokenTable table, @NotNull Function<ViewContext, T> initialValue) Creates and registers the token.SharedStateImpl(@NotNull View owner, @NotNull TokenTable table, T initialValue) Creates and registers the token.