Package org.compiere.server
Class ServerCount
- java.lang.Object
-
- org.compiere.server.ServerCount
-
- All Implemented Interfaces:
Serializable
public class ServerCount extends Object implements Serializable
- Author:
- hengsin
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServerCount()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddStarted(int started)increase no of started countvoidaddStopped(int stopped)increase no of stopped countintgetStarted()intgetStopped()
-
-
-
Method Detail
-
getStarted
public int getStarted()
- Returns:
- no of started instance
-
getStopped
public int getStopped()
- Returns:
- no of stopped instance
-
addStarted
public void addStarted(int started)
increase no of started count- Parameters:
started-
-
addStopped
public void addStopped(int stopped)
increase no of stopped count- Parameters:
stopped-
-
-