Class MultipartInput.ProgressNotifier
- java.lang.Object
-
- org.apache.commons.fileupload2.core.MultipartInput.ProgressNotifier
-
- Enclosing class:
- MultipartInput
public static class MultipartInput.ProgressNotifier extends Object
Internal class, which is used to invoke theProgressListener
.
-
-
Constructor Summary
Constructors Constructor Description ProgressNotifier(ProgressListener progressListener, long contentLength)
Creates a new instance with the given listener and content length.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
noteItem()
Called to indicate, that a new file item has been detected.
-
-
-
Constructor Detail
-
ProgressNotifier
public ProgressNotifier(ProgressListener progressListener, long contentLength)
Creates a new instance with the given listener and content length.- Parameters:
progressListener
- The listener to invoke.contentLength
- The expected content length.
-
-
Method Detail
-
noteItem
public void noteItem()
Called to indicate, that a new file item has been detected.
-
-