Uses of Class
de.aristaflow.adept2.util.Cleanup
-
-
Uses of Cleanup in de.aristaflow.adept2.core.eventmanager.dbevents
Fields in de.aristaflow.adept2.core.eventmanager.dbevents declared as Cleanup Modifier and Type Field Description protected Cleanup<IOException>
MemoryResultSetImpl. cleanup
The clean-up for closing theCloseable
MemoryResultSetImpl.values
. -
Uses of Cleanup in de.aristaflow.adept2.core.runtimemanager.executionenvironments
Fields in de.aristaflow.adept2.core.runtimemanager.executionenvironments declared as Cleanup Modifier and Type Field Description protected Cleanup<RuntimeException>
ExecutionEnvironment. cleanup
The clean-up called after as post-mortem action of thisExecutionEnvironment
. -
Uses of Cleanup in de.aristaflow.adept2.extensions.datatypes
Fields in de.aristaflow.adept2.extensions.datatypes declared as Cleanup Modifier and Type Field Description protected Cleanup<IOException>
FileUDT. cleanup
The clean-up for closing theRereadableContent
as post-mortem action of thisFileUDT
instance.protected Cleanup<IOException>
ListUdt. cleanup
The clean-up for closing the elements ofListUdt.list
as post-mortem task for this instance.protected Cleanup<IOException>
WebFormContainer. cleanup
The clean-up for closing theField
s as post-mortem task for this instance. -
Uses of Cleanup in de.aristaflow.adept2.model.common.collection
Fields in de.aristaflow.adept2.model.common.collection declared as Cleanup Modifier and Type Field Description protected Cleanup<IOException>
AbstractRemoteIterator. cleanup
The clean-up for closing thecloseables
as post-mortem task for this instance or when closing. -
Uses of Cleanup in de.aristaflow.adept2.model.common.communication
Fields in de.aristaflow.adept2.model.common.communication declared as Cleanup Modifier and Type Field Description protected Cleanup<IOException>
ServerInputStream. cleanup
The clean-up for closing the wrapped input stream as post-mortem action of thisServerInputStream
. -
Uses of Cleanup in de.aristaflow.adept2.model.datamanagement
Fields in de.aristaflow.adept2.model.datamanagement declared as Cleanup Modifier and Type Field Description protected Cleanup<IOException>
ADEPT2UDTValue. cleanup
The clean-up called after as post-mortem action of thisADEPT2UDTValue
. -
Uses of Cleanup in de.aristaflow.adept2.model.mail
Fields in de.aristaflow.adept2.model.mail declared as Cleanup Modifier and Type Field Description protected Cleanup<IOException>
Email. cleanup
The clean-up for closing theEmail.attachments
as post-mortem task for this instance.protected Cleanup<IOException>
SerialisableAttachmentDataSource. cleanup
The clean-up for closing theSerialisableAttachment
sSerialisableAttachmentDataSource.att
as post-mortem task for this instance.protected Cleanup<IOException>
UDTAttachment. cleanup
The clean-up for closing theUDTValue
as post-mortem task for this instance. -
Uses of Cleanup in de.aristaflow.adept2.model.runtimeenvironment
Fields in de.aristaflow.adept2.model.runtimeenvironment declared as Cleanup Modifier and Type Field Description protected Cleanup<RuntimeException>
ActivityData. cleanup
The clean-up for closing theCloseable
s.protected Cleanup<RuntimeException>
SettableDataContext. cleanup
The clean-up for closing theCloseable
parameter values. -
Uses of Cleanup in de.aristaflow.adept2.model.worklistmodel
Fields in de.aristaflow.adept2.model.worklistmodel declared as Cleanup Modifier and Type Field Description protected Cleanup<RuntimeException>
CachingIncWorklistUpdate. cleanup
The clean-up for closing the wrapped update as post-mortem task for this instance. -
Uses of Cleanup in de.aristaflow.adept2.ui.awtgui
Fields in de.aristaflow.adept2.ui.awtgui declared as Cleanup Modifier and Type Field Description protected Cleanup<RuntimeException>
SWTEmbeddedAWTContext. cleanup
The clean-up for closing theSWTContext
as post-mortem task for this instance. -
Uses of Cleanup in de.aristaflow.adept2.ui.htmlgui
Fields in de.aristaflow.adept2.ui.htmlgui declared as Cleanup Modifier and Type Field Description protected Cleanup<RuntimeException>
AbstractHTMLContext. cleanup
The clean-up for closing all replies and responses of anAbstractHTMLContext
.protected Cleanup<IOException>
HTMLContext.Attachment. cleanup
The clean-up for closing the data as post-mortem action of thisAttachment
.protected Cleanup<IOException>
HTMLContext.HTTPReply. cleanup
The clean-up for closing the attachments as post-mortem action of thisHTTPReply
.protected Cleanup<RuntimeException>
RemoteHTMLContext. contextCleanup
The clean-up for closing the context and all related resources. -
Uses of Cleanup in de.aristaflow.adept2.ui.swtgui
Fields in de.aristaflow.adept2.ui.swtgui declared as Cleanup Modifier and Type Field Description protected Cleanup<RuntimeException>
SwtUrlContext. cleanup
The clean-up for closing the parent context and the browser as post-mortem task for this instance.protected Cleanup<RuntimeException>
SwtHtmlContext. contextCleanup
The clean-up for closing the context and all related resources. -
Uses of Cleanup in de.aristaflow.adept2.util
Methods in de.aristaflow.adept2.util that return Cleanup 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. addTask(AutoCloseable... autoCloseables)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the end of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTask(String descriptor, AutoCloseable... autoCloseables)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the end of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTask(String descriptor, Collection<? extends AutoCloseable> autoCloseables)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the end of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTask(String descriptor, Supplier<? extends AutoCloseable> autoCloseable)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the end of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTask(Collection<? extends AutoCloseable> autoCloseables)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the end of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTask(Supplier<? extends AutoCloseable> autoCloseable)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
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.Cleanup<EX>
Cleanup. addTaskAsFirst(AutoCloseable... autoCloseables)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the first position of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTaskAsFirst(String descriptor, AutoCloseable... autoCloseables)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the first position of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTaskAsFirst(String descriptor, Collection<? extends AutoCloseable> autoCloseables)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the first position of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTaskAsFirst(String descriptor, Supplier<AutoCloseable> autoCloseable)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the first position of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTaskAsFirst(Collection<? extends AutoCloseable> autoCloseables)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
s to the first position of the list of registered clean-up tasks.Cleanup<EX>
Cleanup. addTaskAsFirst(Supplier<AutoCloseable> autoCloseable)
Adds anCleanup.AutoCloseableCleanupTask
for the designatedAutoCloseable
to the first position of the list of registered clean-up tasks.Cleanup<RuntimeException>
Cleanup.Builder. register(Object object)
Finishes creating aCleanup
for the given object using the other provided information.<EX extends Exception>
Cleanup<EX>Cleanup.Builder. register(Object object, Class<EX> checkedExceptionType)
Finishes creating aCleanup
for the given object using the other provided information.static Cleanup<RuntimeException>
Cleanup. register(Object object)
Creates aCleanup
as post-mortem action for the designated object.static <EX extends Exception>
Cleanup<EX>Cleanup. register(Object object, Class<EX> checkedExceptionType)
Creates aCleanup
as post-mortem action for the designated object.static Cleanup<RuntimeException>
Cleanup. register(Object object, String descriptor)
Creates aCleanup
as post-mortem action for the designated object with the designated descriptor.static <EX extends Exception>
Cleanup<EX>Cleanup. register(Object object, String descriptor, Class<EX> checkedExceptionType)
Creates aCleanup
as post-mortem action for the designated object with the designated descriptor. -
Uses of Cleanup in de.aristaflow.adept2.util.io
Fields in de.aristaflow.adept2.util.io declared as Cleanup Modifier and Type Field Description protected Cleanup<IOException>
AttributedInputStream. cleanup
The clean-up for closing the wrapped input stream as post-mortem action of thisAttributedInputStream
ornull
to onlyInputStream.close()
the wrapped input stream.protected Cleanup<RuntimeException>
BufferedRereadableContent. cleanup
Deprecated, for removal: This API element is subject to removal in a future version.The clean-up for closing theBufferedRereadableContent.createdStreams
and the temporary file.protected Cleanup<IOException>
CloseInCleanupInputStream. cleanup
The clean-up for closing the wrapped input stream as post-mortem action of thisCloseInCleanupInputStream
.protected Cleanup<IOException>
RereadableContent. cleanup
The clean-up called as post-mortem action of thisRereadableContent
.protected Cleanup<IOException>
RereadableContentBuilder. cleanup
The clean-up called as post-mortem action of thisRereadableContentBuilder
closing the streams (if not used) and deleting the temporary file if appropriate.protected Cleanup<IOException>
SwitchingOutputStream. cleanup
The clean-up called as post-mortem action of thisSwitchingOutputStream
which closes theSwitchingOutputStream.currentOutputStream
if present. -
Uses of Cleanup in de.aristaflow.adept2.util.threading
Fields in de.aristaflow.adept2.util.threading declared as Cleanup Modifier and Type Field Description protected Cleanup<RuntimeException>
LoggingFuture. cleanup
TheCleanup
called as post-mortem action for this future.
-