Set<Node> collection = new HashSet<Node>();
public void consume( Entries item )
{
System.out.println( ">> intermediate consumer for " + name + " with " + item );
Node n = item.get( NodeFactory.createVariable( name ) );
System.out.println( ">> adding " + n );
collection.add( n );
}
public void finish()
{
System.out.println( ">> HO HO A SIGNAL" );
Entries item = new Entries();
Node aggregate = literalAggregate( collection );
item.put( NodeFactory.createVariable( name ), aggregate );
conclusion.consume( item );
}
public void start()