Interface ProgressStatusCallback
-
public interface ProgressStatusCallback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidactionFinished()Signal that the transfer has finished.voidprogressChanged(int progressValue)Signal the changed progress.voidtextChanged(String text)Signal the changed text.
-
-
-
Method Detail
-
progressChanged
void progressChanged(int progressValue)
Signal the changed progress.- Parameters:
progressValue- the new progress value
-
textChanged
void textChanged(String text)
Signal the changed text.- Parameters:
text- the new text value
-
actionFinished
void actionFinished()
Signal that the transfer has finished.
-
-