RuneHive-Game
Loading...
Searching...
No Matches
QueuePolicy.java
Go to the documentation of this file.
1
package
com.runehive.game.action.policy;
2
3
/**
4
* A queue policy determines when the clients should queue up actions.
5
*
6
* @author Graham Edgecombe
7
*/
8
public
enum
QueuePolicy
{
9
10
/** This indicates actions will always be queued. */
11
ALWAYS
,
12
13
/** This indicates actions will never be queued. */
14
NEVER
15
16
}
com.runehive.game.action.policy.QueuePolicy
A queue policy determines when the clients should queue up actions.
Definition
QueuePolicy.java:8
com.runehive.game.action.policy.QueuePolicy.ALWAYS
ALWAYS
This indicates actions will always be queued.
Definition
QueuePolicy.java:11
com.runehive.game.action.policy.QueuePolicy.NEVER
NEVER
This indicates actions will never be queued.
Definition
QueuePolicy.java:14