@SuppressWarnings("deprecation")
public EvictedEventNode takeLastEventNode()
{
try
{
EvictionEvent ee = getEvictionEventQueue().poll(0, TimeUnit.SECONDS);
if (ee instanceof EvictedEventNode) return (EvictedEventNode) ee;
else return new EvictedEventNode(ee);
}
catch (InterruptedException e)
{