Package org.netxms.client
Interface ProgressListener
public interface ProgressListener
Generic progress listener interface
- 
Method SummaryModifier and TypeMethodDescriptionvoidmarkProgress(long workDone) Called by entity performing operation to indicate progressvoidsetTotalWorkAmount(long workTotal) Called by entity performing operation to indicate total amount of work to be done
- 
Method Details- 
setTotalWorkAmountvoid setTotalWorkAmount(long workTotal) Called by entity performing operation to indicate total amount of work to be done- Parameters:
- workTotal- The amount of total work
 
- 
markProgressvoid markProgress(long workDone) Called by entity performing operation to indicate progress- Parameters:
- workDone- raw value of work done (for example, number of bytes transferred)
 
 
-