Package edu.sc.seis.sod
Interface ArmListener
-
- All Known Implementing Classes:
NetworkTimeRange
,OutputScheduler
public interface ArmListener
Notifies the given object when the arms of SOD are starting and, if it calls add on the arm when it gets in starting, when the arm is finished.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
finished(Arm arm)
void
started()
Called when all the arms have been started.void
starting(Arm arm)
-
-
-
Method Detail
-
finished
void finished(Arm arm)
-
starting
void starting(Arm arm) throws ConfigurationException
- Throws:
ConfigurationException
-
started
void started() throws ConfigurationException
Called when all the arms have been started.- Throws:
ConfigurationException
-
-