com.planet_ink.coffee_mud.core.interfaces
Interface TickableGroup

All Known Implementing Classes:
Tick

public interface TickableGroup

This class represents a thread, consisting of a group of Tickable objects receiving periodic calls to their tick(Tickable,int) methods by this thread object

See Also:
Tickable, Tickable.tick(Tickable, int)

Field Summary
static int MAX_TICK_CLIENTS
          the maximum number of ticking objects which can be handled by a single thread
 
Method Summary
 Tickable lastTicked()
          Returns the current or last Tickable object which this thread made a tick(Tickable,int) method call to.
 

Field Detail

MAX_TICK_CLIENTS

static final int MAX_TICK_CLIENTS
the maximum number of ticking objects which can be handled by a single thread

See Also:
Constant Field Values
Method Detail

lastTicked

Tickable lastTicked()
Returns the current or last Tickable object which this thread made a tick(Tickable,int) method call to.

Returns:
the Tickable object last accessed
See Also:
Tickable, Tickable.tick(Tickable, int)