162163164165166167168169
try { return iter.prev(); } catch (DBException e) { throw e; } catch (RuntimeException e) { throw new DBException(e.getMessage(), e); } }
176177178179180181182183
try { return iter.peekPrev(); } catch (DBException e) { throw e; } catch (RuntimeException e) { throw new DBException(e.getMessage(), e); } }
190191192193194195196197
try { iter.remove(); } catch (DBException e) { throw e; } catch (RuntimeException e) { throw new DBException(e.getMessage(), e); } }
328329330331332333334335
InternalMetadata meta = me.getMetadata(); if (meta != null && meta.expiryTime() > -1) { addNewExpiry(me); } } catch (Exception e) { throw new DBException(e); } }
327328329330331332333334
357358359360361362363364
db.put(marshall(ed.getKey()), marshall(ed)); if (ed.canExpire()) { addNewExpiry(ed); } } catch (Exception e) { throw new DBException(e); } }
300301302303304305306307
281282283284285286287288
325326327328329330331332