001 package org.LiveGraph.events; 002 003 public interface EventProducer { 004 005 public void eventProcessingFinished(Event<? extends EventType> event); 006 public boolean eventProcessingException(Event<? extends EventType> event, EventProcessingException exception); 007 008 }