Package com.day.util
Interface Finalizer
-
- All Known Implementing Classes:
TempFileFinalizer
public interface Finalizer
Object who need to be cleaned up when anExecutionContext
is destroyed, theFinalizer
interface may register with theFinalizerHandler
. At the end of theExecutionContext
, all registeredFinalizer
instances are called for their cleanup work.- Since:
- antbear
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
doFinalize()
This is the method called by theFinalizerHandler
when the finalizing work has to be done.
-
-
-
Method Detail
-
doFinalize
void doFinalize()
This is the method called by theFinalizerHandler
when the finalizing work has to be done.
-
-