9899100101102103104105
Future future = getExecutor().submit(new Save(this, o)); return future; } public Future removeAsync(Object o) { Future future = getExecutor().submit(new Delete(this, o)); return future; }
209210211212213214215216217218219
*/ public void remove(Object o) { if (o == null) return; try { Delete d = new Delete(this, o); d.call(); } catch (Exception e) { throw new PersistenceException(e); } }
93949596979899100
197198199200201202203204205206207
108109110111112113114115
208209210211212213214215216217218