Package aQute.bnd.service.message
Interface Progress
-
- All Superinterfaces:
java.lang.AutoCloseable
public interface Progress extends java.lang.AutoCloseable
Progress monitor. You can create a progress monitor throughDialogs.createProgress(String)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
progress(java.lang.String message, int percentage, int timeToFinishInSecs)
Indicate progress
-
-
-
Method Detail
-
progress
void progress(java.lang.String message, int percentage, int timeToFinishInSecs)
Indicate progress- Parameters:
message
- The subject that is being worked uponpercentage
- Progress in percentage or -1 if unknowntimeToFinishInSecs
- Time to finish the work in seconds or -1 if unknown
-
-