RuneHive-Game
Loading...
Searching...
No Matches
QueuePolicy.java
Go to the documentation of this file.
1package 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 */
8public enum QueuePolicy {
9
10 /** This indicates actions will always be queued. */
12
13 /** This indicates actions will never be queued. */
15
16}
A queue policy determines when the clients should queue up actions.
ALWAYS
This indicates actions will always be queued.
NEVER
This indicates actions will never be queued.