Package org.smooks.api.lifecycle
Interface PostFragmentLifecycle
-
- All Superinterfaces:
ContentHandler
,Visitor
- All Known Implementing Classes:
AbstractOutputStreamResource
,StaticProxyInterceptor
public interface PostFragmentLifecycle extends Visitor
Post Fragment Lifecycle resource.- Author:
- tom.fennelly@gmail.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPostFragment(Fragment<?> fragment, ExecutionContext executionContext)
Cleanup the resources allocated by this resource for the specified ExecutionContext.
-
-
-
Method Detail
-
onPostFragment
void onPostFragment(Fragment<?> fragment, ExecutionContext executionContext)
Cleanup the resources allocated by this resource for the specified ExecutionContext. Executes the cleanup at the end of the fragment visit.- Parameters:
fragment
- The fragment.executionContext
- The ExecutionContext.
-
-