com.bristle.javalib.net.http
Interface MultiPartFormDataParamMap.FileItemStreamCallBack
- Enclosing class:
- MultiPartFormDataParamMap
public static interface MultiPartFormDataParamMap.FileItemStreamCallBack
This interface must be implemented by any class that expects to be
called as a callback by MultiPartFormDataParamMap.parseRequestStream(HttpServletRequest,
FileItemStreamCallBack)
.
fullyProcessAFileItemStream
void fullyProcessAFileItemStream(FileItemStream fileItemStream)
throws Throwable
- Fully process the specified FileItemStream, without keeping a
reference to it.
- Parameters:
fileItemStream
- The FileItemStream to fully process.
- Throws:
Throwable
- Permitted to throw any Throwable.
It will be propagated to the caller of
MultiPartFormDataParamMap.parseRequestStream(HttpServletRequest,
FileItemStreamCallBack)
.