292293294295296297298299
protected long createObjectInternal(Transaction txn) { try { TxnInfo txnInfo = checkTxn(txn); return server.createObject(txnInfo.tid); } catch (IOException e) { throw new NetworkException("", e); } }
302303304305306307308309
protected void markForUpdateInternal(Transaction txn, long oid) { try { TxnInfo txnInfo = checkTxn(txn); server.markForUpdate(txnInfo.tid, oid); } catch (IOException e) { throw new NetworkException("", e); } }
314315316317318319320321
{ try { TxnInfo txnInfo = checkTxn(txn); return server.getObject(txnInfo.tid, oid, forUpdate); } catch (IOException e) { throw new NetworkException("", e); } }
324325326327328329330331
protected void setObjectInternal(Transaction txn, long oid, byte[] data) { try { TxnInfo txnInfo = checkTxn(txn); server.setObject(txnInfo.tid, oid, data); } catch (IOException e) { throw new NetworkException("", e); } }
336337338339340341342343
{ try { TxnInfo txnInfo = checkTxn(txn); server.setObjects(txnInfo.tid, oids, dataArray); } catch (IOException e) { throw new NetworkException("", e); } }
346347348349350351352353
protected void removeObjectInternal(Transaction txn, long oid) { try { TxnInfo txnInfo = checkTxn(txn); server.removeObject(txnInfo.tid, oid); } catch (IOException e) { throw new NetworkException("", e); } }
356357358359360361362363
protected BindingValue getBindingInternal(Transaction txn, String name) { try { TxnInfo txnInfo = checkTxn(txn); return server.getBinding(txnInfo.tid, name); } catch (IOException e) { throw new NetworkException("", e); } }
368369370371372373374375
{ try { TxnInfo txnInfo = checkTxn(txn); return server.setBinding(txnInfo.tid, name, oid); } catch (IOException e) { throw new NetworkException("", e); } }
380381382383384385386387
{ try { TxnInfo txnInfo = checkTxn(txn); return server.removeBinding(txnInfo.tid, name); } catch (IOException e) { throw new NetworkException("", e); } }
390391392393394395396397
protected String nextBoundNameInternal(Transaction txn, String name) { try { TxnInfo txnInfo = checkTxn(txn); return server.nextBoundName(txnInfo.tid, name); } catch (IOException e) { throw new NetworkException("", e); } }