Interface ProgressListener
- 
 public interface ProgressListenerTheProgressListenermay be used to display a progress bar or do stuff like that.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidupdate(long pBytesRead, long pContentLength, int pItems)Updates the listeners status information.
 
- 
- 
- 
Method Detail- 
updatevoid update(long pBytesRead, long pContentLength, int pItems)Updates the listeners status information.- Parameters:
- pBytesRead- The total number of bytes, which have been read so far.
- pContentLength- The total number of bytes, which are being read. May be -1, if this number is unknown.
- pItems- The number of the field, which is currently being read. (0 = no item so far, 1 = first item is being read, ...)
 
 
- 
 
-