Uses of Enum
ca.uhn.fhir.batch2.model.StatusEnum
Packages that use StatusEnum
Package
Description
This package contains the APIs used in the Batch2 framework.
-
Uses of StatusEnum in ca.uhn.fhir.batch2.api
Methods in ca.uhn.fhir.batch2.api that return StatusEnumMethods in ca.uhn.fhir.batch2.api with parameters of type StatusEnumModifier and TypeMethodDescriptionbooleanIJobPersistence.markInstanceAsStatusWhenStatusIn(String theInstance, StatusEnum theStatusEnum, Set<StatusEnum> thePriorStates) Method parameters in ca.uhn.fhir.batch2.api with type arguments of type StatusEnumModifier and TypeMethodDescriptionIJobPersistence.fetchInstances(String theJobDefinitionId, Set<StatusEnum> theStatuses, Date theCutoff, org.springframework.data.domain.Pageable thePageable) IJobPersistence.fetchInstancesByJobDefinitionIdAndStatus(String theJobDefinitionId, Set<StatusEnum> theRequestedStatuses, int thePageSize, int thePageIndex) IJobCoordinator.getJobInstancesByJobDefinitionIdAndStatuses(String theJobDefinitionId, Set<StatusEnum> theStatuses, int theCount, int theStart) Fetches all job instances by job definition id and statusesbooleanIJobPersistence.markInstanceAsStatusWhenStatusIn(String theInstance, StatusEnum theStatusEnum, Set<StatusEnum> thePriorStates) -
Uses of StatusEnum in ca.uhn.fhir.batch2.coordinator
Method parameters in ca.uhn.fhir.batch2.coordinator with type arguments of type StatusEnumModifier and TypeMethodDescriptionJobCoordinatorImpl.getJobInstancesByJobDefinitionIdAndStatuses(String theJobDefinitionId, Set<StatusEnum> theStatuses, int theCount, int theStart) -
Uses of StatusEnum in ca.uhn.fhir.batch2.model
Methods in ca.uhn.fhir.batch2.model that return StatusEnumModifier and TypeMethodDescriptionstatic StatusEnum[]StatusEnum.getIncompleteStatuses()Statuses that represent a job that has not yet completed.JobInstance.getStatus()static StatusEnumReturns the enum constant of this type with the specified name.static StatusEnum[]StatusEnum.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in ca.uhn.fhir.batch2.model that return types with arguments of type StatusEnumModifier and TypeMethodDescriptionstatic Set<StatusEnum>StatusEnum.getEndedStatuses()Statuses that represent a job that has ended.StatusEnum.getNextStates()States this state may transotion to.static Set<StatusEnum>StatusEnum.getNotEndedStatuses()Statuses that represent a job that has not ended.StatusEnum.getPriorStates()States that may transition to this state.FetchJobInstancesRequest.getStatuses()Methods in ca.uhn.fhir.batch2.model with parameters of type StatusEnumModifier and TypeMethodDescriptionstatic booleanStatusEnum.isLegalStateTransition(StatusEnum theOrigStatus, StatusEnum theNewStatus) JobInstance.setStatus(StatusEnum theStatus) Constructors in ca.uhn.fhir.batch2.model with parameters of type StatusEnumModifierConstructorDescriptionFetchJobInstancesRequest(String theJobDefinition, String theParameters, StatusEnum... theStatuses) -
Uses of StatusEnum in ca.uhn.fhir.batch2.progress
Methods in ca.uhn.fhir.batch2.progress that return StatusEnumMethods in ca.uhn.fhir.batch2.progress with parameters of type StatusEnumModifier and TypeMethodDescriptionbooleanJobInstanceStatusUpdater.updateInstanceStatus(JobInstance theJobInstance, StatusEnum theNewStatus) Update the status on the instance, and call any completion handlers when entering a completion state.