@Override
public Cursor<? extends Statement> getStatements(Resource subj, URI pred, Value obj,
boolean includeInferred, Resource... contexts)
throws StoreException
{
Lock conLock = getSharedConnectionLock();
try {
return super.getStatements(subj, pred, obj, includeInferred, contexts);
}
finally {
conLock.release();
}
}