168169170171172173174175176177178
Lock txnLock = getTransactionLock(); try { super.rollback(); } finally { txnLock.release(); } } finally { conLock.release(); }
187188189190191192193194195196197
Lock txnLock = getTransactionLock(); try { super.addStatement(subj, pred, obj, contexts); } finally { txnLock.release(); } } finally { conLock.release(); }
206207208209210211212213214215216
Lock txnLock = getTransactionLock(); try { super.removeStatements(subj, pred, obj, contexts); } finally { txnLock.release(); } } finally { conLock.release(); }
223224225226227228229230231232233
Lock conLock = getSharedConnectionLock(); try { return super.getNamespaces(); } finally { conLock.release(); } } @Override public String getNamespace(String prefix)
236237238239240241242243244245246
Lock conLock = getSharedConnectionLock(); try { return super.getNamespace(prefix); } finally { conLock.release(); } } @Override public void setNamespace(String prefix, String name)
251252253254255256257258259260261
Lock txnLock = getTransactionLock(); try { super.setNamespace(prefix, name); } finally { txnLock.release(); } } finally { conLock.release(); }
270271272273274275276277278279280
Lock txnLock = getTransactionLock(); try { super.removeNamespace(prefix); } finally { txnLock.release(); } } finally { conLock.release(); }
289290291292293294295296297298299
Lock txnLock = getTransactionLock(); try { super.clearNamespaces(); } finally { txnLock.release(); } } finally { conLock.release(); }
150151152153154155156157158159160
iter = strategy.evaluate(query, EmptyBindingSet.getInstance()); iter = new LockingCursor<BindingSet>(stLock, iter); return iter; } catch (StoreException e) { stLock.release(); throw e; } catch (RuntimeException e) { stLock.release(); throw e;
154155156157158159160161162163164
catch (StoreException e) { stLock.release(); throw e; } catch (RuntimeException e) { stLock.release(); throw e; } } public Cursor<? extends Resource> getContextIDs()