public void handleStatement(Statement st)
throws RDFHandlerException
{
namespacesReady.countDown();
if (closed) {
throw new RDFHandlerException("Result closed");
}
try {
queue.put(st);
}
catch (InterruptedException e) {
throw new RDFHandlerException(e);
}
}