Uses of Class
cn.boboweike.carrot.tasks.states.StateName
-
-
Uses of StateName in cn.boboweike.carrot.server.concurrent.statechanges
Methods in cn.boboweike.carrot.server.concurrent.statechanges with parameters of type StateName Modifier and Type Method Description booleanAbstractAllowedConcurrentStateChange. matches(StateName localState, StateName storageProviderState)booleanAllowedConcurrentStateChange. matches(StateName localState, StateName storageProviderState)booleanPermanentlyDeletedWhileProcessingConcurrentStateChange. matches(StateName localState, StateName storageProviderState)Constructors in cn.boboweike.carrot.server.concurrent.statechanges with parameters of type StateName Constructor Description AbstractAllowedConcurrentStateChange(StateName localState, StateName storageProviderState) -
Uses of StateName in cn.boboweike.carrot.storage
Methods in cn.boboweike.carrot.storage with parameters of type StateName Modifier and Type Method Description intInMemoryPartitionedStorageProvider. deleteTasksPermanentlyByPartition(StateName state, Instant updatedBefore, Integer partition)intPartitionedStorageProvider. deleteTasksPermanentlyByPartition(StateName state, Instant updatedBefore, Integer partition)intThreadSafePartitionedStorageProvider. deleteTasksPermanentlyByPartition(StateName state, Instant updatedBefore, Integer partition)booleanInMemoryPartitionedStorageProvider. existsByPartition(TaskDetails taskDetails, Integer partition, StateName... states)booleanPartitionedStorageProvider. existsByPartition(TaskDetails taskDetails, Integer partition, StateName... states)booleanThreadSafePartitionedStorageProvider. existsByPartition(TaskDetails taskDetails, Integer partition, StateName... states)Set<String>InMemoryPartitionedStorageProvider. getDistinctTaskSignatures(StateName... states)Set<String>PartitionedStorageProvider. getDistinctTaskSignatures(StateName... states)Set<String>ThreadSafePartitionedStorageProvider. getDistinctTaskSignatures(StateName... states)Page<Task>InMemoryPartitionedStorageProvider. getTaskPageByPartition(StateName state, PageRequest pageRequest, Integer partition)Page<Task>PartitionedStorageProvider. getTaskPageByPartition(StateName state, PageRequest pageRequest, Integer partition)Page<Task>ThreadSafePartitionedStorageProvider. getTaskPageByPartition(StateName state, PageRequest pageRequest, Integer partition)List<Task>InMemoryPartitionedStorageProvider. getTasksByPartition(StateName state, PageRequest pageRequest, Integer partition)List<Task>InMemoryPartitionedStorageProvider. getTasksByPartition(StateName state, Instant updatedBefore, PageRequest pageRequest, Integer partition)List<Task>PartitionedStorageProvider. getTasksByPartition(StateName state, PageRequest pageRequest, Integer partition)List<Task>PartitionedStorageProvider. getTasksByPartition(StateName state, Instant updatedBefore, PageRequest pageRequest, Integer partition)List<Task>ThreadSafePartitionedStorageProvider. getTasksByPartition(StateName state, PageRequest pageRequest, Integer partition)List<Task>ThreadSafePartitionedStorageProvider. getTasksByPartition(StateName state, Instant updatedBefore, PageRequest pageRequest, Integer partition)booleanInMemoryPartitionedStorageProvider. recurringTaskExistsByPartition(String recurringTaskId, Integer partition, StateName... states)booleanPartitionedStorageProvider. recurringTaskExistsByPartition(String recurringTaskId, Integer partition, StateName... states)booleanThreadSafePartitionedStorageProvider. recurringTaskExistsByPartition(String recurringTaskId, Integer partition, StateName... states) -
Uses of StateName in cn.boboweike.carrot.storage.nosql.mongo
Methods in cn.boboweike.carrot.storage.nosql.mongo with parameters of type StateName Modifier and Type Method Description intMongoDBPartitionedStorageProvider. deleteTasksPermanentlyByPartition(StateName state, Instant updatedBefore, Integer partition)booleanMongoDBPartitionedStorageProvider. existsByPartition(TaskDetails taskDetails, Integer partition, StateName... states)Set<String>MongoDBPartitionedStorageProvider. getDistinctTaskSignatures(StateName... states)Page<Task>MongoDBPartitionedStorageProvider. getTaskPageByPartition(StateName state, PageRequest pageRequest, Integer partition)List<Task>MongoDBPartitionedStorageProvider. getTasksByPartition(StateName state, PageRequest pageRequest, Integer partition)List<Task>MongoDBPartitionedStorageProvider. getTasksByPartition(StateName state, Instant updatedBefore, PageRequest pageRequest, Integer partition)booleanMongoDBPartitionedStorageProvider. recurringTaskExistsByPartition(String recurringTaskId, Integer partition, StateName... states) -
Uses of StateName in cn.boboweike.carrot.tasks
Methods in cn.boboweike.carrot.tasks that return StateName Modifier and Type Method Description StateNameTask. getState()Methods in cn.boboweike.carrot.tasks with parameters of type StateName Modifier and Type Method Description booleanTask. hasState(StateName state) -
Uses of StateName in cn.boboweike.carrot.tasks.context
Methods in cn.boboweike.carrot.tasks.context that return StateName Modifier and Type Method Description StateNameTaskContext. getTaskState() -
Uses of StateName in cn.boboweike.carrot.tasks.states
Methods in cn.boboweike.carrot.tasks.states that return StateName Modifier and Type Method Description StateNameIllegalTaskStateChangeException. getFrom()StateNameAbstractTaskState. getName()StateNameTaskState. getName()StateNameIllegalTaskStateChangeException. getTo()static StateNameStateName. valueOf(String name)Returns the enum constant of this type with the specified name.static StateName[]StateName. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in cn.boboweike.carrot.tasks.states with parameters of type StateName Modifier and Type Method Description static booleanAllowedTaskStateStateChanges. isAllowedStateChange(StateName from, StateName to)static booleanAllowedTaskStateStateChanges. isIllegalStateChange(StateName from, StateName to)Constructors in cn.boboweike.carrot.tasks.states with parameters of type StateName Constructor Description AbstractTaskState(StateName state)IllegalTaskStateChangeException(StateName from, StateName to)
-