Uses of Interface
de.aristaflow.adept2.util.CleanupTask
-
-
Uses of CleanupTask in de.aristaflow.adept2.core.eventmanager.dbevents
Classes in de.aristaflow.adept2.core.eventmanager.dbevents that implement CleanupTask Modifier and Type Class Description protected static class
MemoryResultSetImpl.MrsiCleanup
The clean-up task for closing theCloseable
values. -
Uses of CleanupTask in de.aristaflow.adept2.core.transactionmanager
Classes in de.aristaflow.adept2.core.transactionmanager that implement CleanupTask Modifier and Type Class Description protected static class
ResultSetRemoteIterator.ResultSetRemoteIteratorCloseTask
The clean-up task for closing the wrapped result set and dropping created recursion tables. -
Uses of CleanupTask in de.aristaflow.adept2.model.common.collection
Classes in de.aristaflow.adept2.model.common.collection that implement CleanupTask Modifier and Type Class Description protected static class
CachingRemoteIterator.CachingRemoteIteratorCloseTask
The clean-up task for closing the wrappedRemoteIterator
.protected static class
TransformingRemoteIterator.TransformingRemoteIteratorCloseTask
The clean-up task for closing the wrappedRemoteIterator
. -
Uses of CleanupTask in de.aristaflow.adept2.model.worklistmodel
Classes in de.aristaflow.adept2.model.worklistmodel that implement CleanupTask Modifier and Type Class Description protected static class
CachingIncWorklistUpdate.CachingIncWorklistUpdateCloseTask
The clean-up task for closing/dropping theIncrementalWorklistUpdate
. -
Uses of CleanupTask in de.aristaflow.adept2.ui.htmlgui
Classes in de.aristaflow.adept2.ui.htmlgui that implement CleanupTask Modifier and Type Class Description protected static class
AbstractHTMLContext.HtmlContextCleanupTask
The clean-up task for closing all replies and responses of anAbstractHTMLContext
. -
Uses of CleanupTask in de.aristaflow.adept2.ui.swtgui
Classes in de.aristaflow.adept2.ui.swtgui that implement CleanupTask Modifier and Type Class Description protected static class
SwtHtmlContext.BrowserCloseTask
The clean-up task for closing the browser.protected static class
SwtUrlContext.BrowserCloseTask
The clean-up task for closing the browser. -
Uses of CleanupTask in de.aristaflow.adept2.util
Classes in de.aristaflow.adept2.util that implement CleanupTask Modifier and Type Class Description static class
Cleanup.CollectionCloseTask
A cleanup task for cleaning up a collection of objects possibly beingAutoCloseable
.static class
CleanupTask.AbstractCleanupTask<EX extends Exception>
Convenient base class forCleanupTask
with the option to provide a custom descriptor for the clean-up task and/or a logger.static class
CleanupTask.AtomicCloseTask
A simple cleanup task for cleaning up anAtomicReference
.static class
CleanupTask.CloseAndResetTask
An abstract cleanup task for closing a suppliedAutoCloseable
and resetting it via aRunnable
.static class
CleanupTask.MutableCloseTask
A simple cleanup task for cleaning up aMutable
.Methods in de.aristaflow.adept2.util with parameters of type CleanupTask Modifier and Type Method Description Cleanup<EX>
Cleanup. addTask(CleanupTask<? extends Exception> task)
Adds the given clean-up task to the end of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTaskAsFirst(CleanupTask<? extends Exception> task)
Adds the given clean-up task to the first position of the list of registered clean-up tasks.Method parameters in de.aristaflow.adept2.util with type arguments of type CleanupTask Modifier and Type Method Description protected static void
Cleanup. runTasks(Collection<CleanupTask<? extends Exception>> tasks, boolean explicitlyCleaned, String objectDescriptor, Logger logger)
Executes the designated tasks by callingcleanup(boolean)
and collecting the corresponding exceptions. -
Uses of CleanupTask in de.aristaflow.adept2.util.io
Classes in de.aristaflow.adept2.util.io that implement CleanupTask Modifier and Type Class Description protected static class
BufferedRereadableContent.BrcCleanup
Deprecated, for removal: This API element is subject to removal in a future version.The clean-up task deleting the temporary file if appropriateprotected static class
RereadableContent.RrcCleanup
TheCleanupTask
doing the clean-up (RereadableContent.close()
) independently from theRereadableContent
.protected static class
RereadableContentBuilder.RcbCleanup
TheCleanupTask
doing the clean-up (RereadableContentBuilder.close()
) independently from theRereadableContentBuilder
.Constructors in de.aristaflow.adept2.util.io with parameters of type CleanupTask Constructor Description AttributedInputStream(InputStream in, CleanupTask<IOException> cleanup)
Creates a new input stream wrapping the designated input stream and having arbitrary attributes and the designated clean-up task.RrcInputStream(InputStream is, RereadableContent rrc, CleanupTask<IOException> cleanup)
Creates a new input stream with the designated input stream as content and wrapping the designatedRereadableContent
. -
Uses of CleanupTask in de.aristaflow.adept2.util.threading
Classes in de.aristaflow.adept2.util.threading that implement CleanupTask Modifier and Type Class Description protected static class
LoggingFuture.IgnoredResultLogger
This clean-up task logs the result of a future which no one retrieved.
-