* @return true if a new timer was created and false if one already existed under the given identifier
*/
public boolean createTimer(Object o)
{
synchronized (timerMap) {
Timer timer = timerMap.get(o);
if (timer != null) {
return false;
} else {
timerMap.put(o, new Timer());
return true;
}
}
}