Package org.biojava.utils
Interface ActivityListener
-
public interface ActivityListener
Interface for object which monitor long-running activities. (may be subject to change before 1.2-final)- Since:
- 1.2
- Author:
- Thomas Down
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidactivityFailed(Object source, Exception ex)Notification of errors behind the scenes.voidactivityProgress(Object source, int current, int target)Estimated progress of an activity.voidcompletedActivity(Object source)Notification that an activity is complete.voidstartedActivity(Object source)Notification that an activity has started.
-
-
-
Method Detail
-
startedActivity
void startedActivity(Object source)
Notification that an activity has started.
-
completedActivity
void completedActivity(Object source)
Notification that an activity is complete.
-
activityFailed
void activityFailed(Object source, Exception ex)
Notification of errors behind the scenes.
-
activityProgress
void activityProgress(Object source, int current, int target)
Estimated progress of an activity. This indicated thatcurrentparts of the activity have been completed, out of a targettarget.
-
-