Package org.ow2.clif.server.api
Interface ActivityControl
-
- All Known Subinterfaces:
BladeControl,TestControl
- All Known Implementing Classes:
AbstractDumbInsert,AbstractInsert,BladeInsertAdapterImpl,Insert,Insert,Insert,Insert,Insert,Insert,Insert,Insert_JRockit5,IsacExtendedEngine,MTScenario,SupervisorImpl,Synchro,SynchroBladeInsert
public interface ActivityControlGeneric control of an activity- Author:
- Bruno Dillenseger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinit(java.io.Serializable testId)Initialize the activityvoidjoin()Waits until the end of the activityvoidresume()Resume the activity (if suspended)voidstart()Initial start of the activityvoidstop()Final stop of the activityvoidsuspend()Suspend the activity
-
-
-
Method Detail
-
init
void init(java.io.Serializable testId) throws ClifException
Initialize the activity- Parameters:
testId- an arbitrary initialization name- Throws:
ClifException
-
start
void start()
Initial start of the activity
-
stop
void stop()
Final stop of the activity
-
suspend
void suspend()
Suspend the activity
-
resume
void resume()
Resume the activity (if suspended)
-
join
void join()
Waits until the end of the activity
-
-