Interface ContainerExtractionContext
-
@Incubating public interface ContainerExtractionContext
A handler passed toContainerExtractor.extract(Object, ValueProcessor, Object, Object, ContainerExtractionContext)
.- See Also:
ContainerExtractor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
propagateOrIgnoreContainerExtractionException(RuntimeException exception)
Propagates (rethrows) aRuntimeException
thrown while extracting elements from a container, or ignores it so that the container is assumed empty.
-
-
-
Method Detail
-
propagateOrIgnoreContainerExtractionException
void propagateOrIgnoreContainerExtractionException(RuntimeException exception)
Propagates (rethrows) aRuntimeException
thrown while extracting elements from a container, or ignores it so that the container is assumed empty.- Parameters:
exception
- ARuntimeException
thrown while extracting elements from a container.
-
-