public SelectionThrottle(String name, IThrottledSelectionHandler selectionHandler) {
_name = name;
_selectionHandler = selectionHandler;
_addedObjects = new LinkedList();
_removedObjects = new LinkedList();
_throttle = new Throttle(_name, 150, this);
}