Uses of Class
de.aristaflow.adept2.model.common.DataConsistencyException
-
-
Uses of DataConsistencyException in de.aristaflow.adept2.core.executionmanager
Methods in de.aristaflow.adept2.core.executionmanager that throw DataConsistencyException Modifier and Type Method Description Map<UUID,UUID>
ExecutionManager. archiveInstance(SessionToken session, UUID instanceID)
Archives the designated instance which removes the instance data completely from the underlying services which includes theInstanceManager
, theDataManager
and theExecutionHistory
.SerialisablePair<Collection<UUID>,Map<UUID,UUID>>
ExecutionManager. archiveTemplate(SessionToken session, UUID templateID)
Archives the designated template which removes the template and the instance data completely from the underlying services which includes theTemplateManager
, theInstanceManager
, theDataManager
and theExecutionHistory
.SerialisablePair<Boolean,ProcessConstants.InstanceExecutionStatus>
InstanceControl. checkForAndFixInconsistencies(SessionToken session, UUID instId, boolean considerRunning)
Checks the designated instance for inconsistencies and tries to fix them. -
Uses of DataConsistencyException in de.aristaflow.adept2.core.processmanager
Methods in de.aristaflow.adept2.core.processmanager that throw DataConsistencyException Modifier and Type Method Description Map<UUID,UUID>
InstanceManager. archiveInstance(SessionToken session, UUID instanceID)
Archives the designated instance, that is the instance and all related data like the status, child instances (and their statuses) as well as the (modified) template in case of a instance-specific template are removed from this instance manager.SerialisablePair<Collection<UUID>,Map<UUID,UUID>>
TemplateManager. archiveTemplate(SessionToken session, UUID templateID)
Archives the designated template, which removes: the template itself, modified templates based on this template, its embedded templates, all corresponding template statuses, all of its instances (including the ones from the modified and embedded templates based on the designated template, all corresponding instance statuses, This alsoarchives all corresponding instances
. -
Uses of DataConsistencyException in de.aristaflow.adept2.core.transactionmanager
Methods in de.aristaflow.adept2.core.transactionmanager that throw DataConsistencyException Modifier and Type Method Description protected List<T>
ResultSetRemoteIterator. getAllImpl()
protected List<T>
ResultSetRemoteIterator. getNextImpl(int count)
protected List<T>
ResultSetRemoteIterator. getNextImpl(int count, int start)
protected List<T>
ResultSetRemoteIterator. getPreviousImpl(int count)
-
Uses of DataConsistencyException in de.aristaflow.adept2.model.common.collection
Methods in de.aristaflow.adept2.model.common.collection that throw DataConsistencyException Modifier and Type Method Description List<T>
AbstractRemoteIterator. getAll()
T
RemoteIterator. getAll()
Gets all elements of this iterator at once.protected abstract List<S>
AbstractRemoteIterator. getAllImpl()
ImplementsAbstractRemoteIterator.getAll()
without the need to consider result transformation, closeable and alive time tracking.protected List<T>
CachingRemoteIterator. getAllImpl()
protected List<T>
EmptyRemoteIterator. getAllImpl()
protected List<T>
MemoryBasedCopyingRemoteIterator. getAllImpl()
protected List<S>
TransformingRemoteIterator. getAllImpl()
List<T>
AbstractRemoteIterator. getNext(int count)
List<T>
AbstractRemoteIterator. getNext(int count, int start)
T
RemoteIterator. getNext(int count)
Gets the next specified amount of elements of this iterator.T
RemoteIterator. getNext(int count, int start)
Gets the next specified amount of elements of this iterator starting at the designated index (0-based).protected abstract List<S>
AbstractRemoteIterator. getNextImpl(int count)
ImplementsAbstractRemoteIterator.getNext(int)
without the need to consider result transformation, closeable and alive time tracking.protected abstract List<S>
AbstractRemoteIterator. getNextImpl(int count, int start)
ImplementsAbstractRemoteIterator.getNext(int, int)
without the need to consider result transformation, closeable and alive time tracking.protected List<T>
CachingRemoteIterator. getNextImpl(int count)
protected List<T>
CachingRemoteIterator. getNextImpl(int count, int start)
protected List<T>
EmptyRemoteIterator. getNextImpl(int count)
protected List<T>
EmptyRemoteIterator. getNextImpl(int count, int start)
protected List<T>
MemoryBasedCopyingRemoteIterator. getNextImpl(int count)
protected List<T>
MemoryBasedCopyingRemoteIterator. getNextImpl(int count, int start)
protected List<S>
TransformingRemoteIterator. getNextImpl(int count)
protected List<S>
TransformingRemoteIterator. getNextImpl(int count, int start)
List<T>
AbstractRemoteIterator. getPrevious(int count)
T
RemoteIterator. getPrevious(int count)
Gets the previous specified amount of elements of this iterator.protected abstract List<S>
AbstractRemoteIterator. getPreviousImpl(int count)
ImplementsAbstractRemoteIterator.getPrevious(int)
without the need to consider result transformation, closeable and alive time tracking.protected List<T>
CachingRemoteIterator. getPreviousImpl(int count)
protected List<T>
EmptyRemoteIterator. getPreviousImpl(int count)
protected List<T>
MemoryBasedCopyingRemoteIterator. getPreviousImpl(int count)
protected List<S>
TransformingRemoteIterator. getPreviousImpl(int count)
-
Uses of DataConsistencyException in de.aristaflow.ilm.model.common
Constructors in de.aristaflow.ilm.model.common with parameters of type DataConsistencyException Constructor Description DataConsistencyException(DataConsistencyException dce)
-
Uses of DataConsistencyException in de.aristaflow.ilm.model.common.collection
Methods in de.aristaflow.ilm.model.common.collection that throw DataConsistencyException Modifier and Type Method Description N
RemoteIteratorHandler. getNext(@NotNull UUID iteratorId, @Positive Integer count, @PositiveOrZero Integer start)
CallsRemoteIterator.getNext(int)
orRemoteIterator.getNext(int, int)
on the designated iterator.protected N
RemoteIteratorHandler. getNext(UUID iteratorId, RemoteIterator<List<T>> iterator, Integer count, Integer start)
CallsRemoteIterator.getNext(int)
,RemoteIterator.getNext(int, int)
orRemoteIterator.getAll()
on the designated iterator.N
RemoteIteratorHandler. getPrevious(@NotNull UUID iteratorId, @NotNull @Positive Integer count)
CallsRemoteIterator.getPrevious(int)
on the designated iterator.I
RemoteIteratorHandler. init(@NotNull RemoteIterator<List<T>> iterator, @Positive Integer count)
Adds the designated iterator to this handler, creates an ID for it and callsRemoteIteratorHandler.getNext(UUID, Integer, Integer)
with the designated parameters andstart
=null
.
-