* to the new state.
* The better approach would to not send any commands to the server and to give control right away to the new state
* which could also send null command and a new state
*/
private Command handleDecision() {
Command com = null;
FSMState newstate = null;
while (true) {
Decision dec = myState.onNewCycle();
logger.fine(time + " " + myState.getClass().getSimpleName() + " " + dec);
com = dec.getCommand();