Uses of Interface
org.togglz.core.repository.StateRepository
-
-
Uses of StateRepository in org.togglz.core.logging
Classes in org.togglz.core.logging that implement StateRepository Modifier and Type Class Description classLoggingStateRepositorySimple implementation ofStateRepositorywhich adds logging capabilities to an existing repository.Constructors in org.togglz.core.logging with parameters of type StateRepository Constructor Description LoggingStateRepository(StateRepository delegate)Creates a logging facade for the suppliedStateRepository.LoggingStateRepository(StateRepository delegate, String customLogMessage)Creates a logging facade for the suppliedStateRepositoryusing a custom log message.LoggingStateRepository(StateRepository delegate, String customLogMessage, org.slf4j.Logger log)LoggingStateRepository(StateRepository delegate, org.slf4j.Logger log) -
Uses of StateRepository in org.togglz.core.manager
Methods in org.togglz.core.manager that return StateRepository Modifier and Type Method Description StateRepositoryTogglzConfig. getStateRepository()TheStateRepositoryTogglz should use to store feature state.Methods in org.togglz.core.manager with parameters of type StateRepository Modifier and Type Method Description FeatureManagerBuilderFeatureManagerBuilder. stateRepository(StateRepository stateRepository)Use the supplied state repository for the feature manager. -
Uses of StateRepository in org.togglz.core.repository.cache
Classes in org.togglz.core.repository.cache that implement StateRepository Modifier and Type Class Description classCachingStateRepositorySimple implementation ofStateRepositorywhich adds caching capabilities to an existing repository.Constructors in org.togglz.core.repository.cache with parameters of type StateRepository Constructor Description CachingStateRepository(StateRepository delegate)Creates a caching facade for the suppliedStateRepository.CachingStateRepository(StateRepository delegate, long ttl)Creates a caching facade for the suppliedStateRepository.CachingStateRepository(StateRepository delegate, long ttl, TimeUnit ttlTimeUnit)Creates a caching facade for the suppliedStateRepository. -
Uses of StateRepository in org.togglz.core.repository.composite
Classes in org.togglz.core.repository.composite that implement StateRepository Modifier and Type Class Description classCompositeStateRepositoryAStateRepositorythat is composed of one or more underlying repositories.Methods in org.togglz.core.repository.composite that return types with arguments of type StateRepository Modifier and Type Method Description List<StateRepository>CompositeStateRepository.RepositorySelector. getSelected(List<StateRepository> from)Returns a subset of state repositories from the specified collection.Method parameters in org.togglz.core.repository.composite with type arguments of type StateRepository Modifier and Type Method Description List<StateRepository>CompositeStateRepository.RepositorySelector. getSelected(List<StateRepository> from)Returns a subset of state repositories from the specified collection.Constructors in org.togglz.core.repository.composite with parameters of type StateRepository Constructor Description CompositeStateRepository(StateRepository... repositories)Creates a composite state repository using the specified underlying state repositories. -
Uses of StateRepository in org.togglz.core.repository.file
Classes in org.togglz.core.repository.file that implement StateRepository Modifier and Type Class Description classFileBasedStateRepositoryAPropertyBasedStateRepositorythat stores the state of features using a standard Java properties file. -
Uses of StateRepository in org.togglz.core.repository.jdbc
Classes in org.togglz.core.repository.jdbc that implement StateRepository Modifier and Type Class Description classJDBCStateRepositoryThis repository implementation can be used to store the feature state in SQL database using the standard JDBC API. -
Uses of StateRepository in org.togglz.core.repository.listener
Classes in org.togglz.core.repository.listener that implement StateRepository Modifier and Type Class Description classListenableStateRepositoryConstructors in org.togglz.core.repository.listener with parameters of type StateRepository Constructor Description ListenableStateRepository(StateRepository delegate, FeatureStateChangedListener... listeners) -
Uses of StateRepository in org.togglz.core.repository.mem
Classes in org.togglz.core.repository.mem that implement StateRepository Modifier and Type Class Description classInMemoryStateRepositoryA very simply implementation ofStateRepositoryentirely on memory. -
Uses of StateRepository in org.togglz.core.repository.property
Classes in org.togglz.core.repository.property that implement StateRepository Modifier and Type Class Description classPropertyBasedStateRepositoryThis implementation ofStateRepositorystores the state of features in aPropertiesformat.
-