Package ch.ivyteam.ivy.server
Interface IServerListener
-
public interface IServerListenerA Server listener- Since:
- 28.07.2006
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidserverProgress(int amoutProgressed, String description)Called if an amount of work has been progressedvoidserverStarted()Called if the server has started and now is runningvoidserverStarting(int amountToStart)Called if the server is stopped and now begins with startingvoidserverStopped()Called if the server has stoppedvoidserverStopping(int amountToStop)Called if the server is running and now begins with stopping
-
-
-
Method Detail
-
serverStarted
void serverStarted()
Called if the server has started and now is running- API:
- This public API is available in Java.
-
serverStopped
void serverStopped()
Called if the server has stopped- API:
- This public API is available in Java.
-
serverStarting
void serverStarting(int amountToStart)
Called if the server is stopped and now begins with starting- Parameters:
amountToStart- the amount of internal elements to start- API:
- This public API is available in Java.
-
serverStopping
void serverStopping(int amountToStop)
Called if the server is running and now begins with stopping- Parameters:
amountToStop- the amount of internal elements to stop- API:
- This public API is available in Java.
-
serverProgress
void serverProgress(int amoutProgressed, String description)Called if an amount of work has been progressed- Parameters:
amoutProgressed- the amount of work progresseddescription- an description of the work that now are going to progressed- API:
- This public API is available in Java.
-
-