From: Bryan T. <tho...@us...> - 2007-03-11 11:43:17
|
Update of /cvsroot/cweb/bigdata/src/java/com/bigdata/istore In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv5433/src/java/com/bigdata/istore Modified Files: JournalStore.java IOM.java Log Message: Continued minor refactoring in line with model updates. Index: IOM.java =================================================================== RCS file: /cvsroot/cweb/bigdata/src/java/com/bigdata/istore/IOM.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IOM.java 11 Dec 2006 16:33:59 -0000 1.3 --- IOM.java 11 Mar 2007 11:42:43 -0000 1.4 *************** *** 79,83 **** * @todo Add stream-based operations. Note that very large objects are going to * scale out using an unisolated stream-based API. That API probably ! * belongs to the {@link IStore} rather than the {@link IOM} since large * streams can not be made transactional (well, they can we a journal * designed for large writes and using a disk-only strategy, but do you --- 79,83 ---- * @todo Add stream-based operations. Note that very large objects are going to * scale out using an unisolated stream-based API. That API probably ! * belongs to the {@link IIndexStore} rather than the {@link IOM} since large * streams can not be made transactional (well, they can we a journal * designed for large writes and using a disk-only strategy, but do you Index: JournalStore.java =================================================================== RCS file: /cvsroot/cweb/bigdata/src/java/com/bigdata/istore/JournalStore.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** JournalStore.java 8 Feb 2007 21:32:11 -0000 1.5 --- JournalStore.java 11 Mar 2007 11:42:43 -0000 1.6 *************** *** 137,141 **** // static class OM implements IOM { // ! // private final IStore store; // private final Journal journal; // --- 137,141 ---- // static class OM implements IOM { // ! // private final IIndexStore store; // private final Journal journal; // *************** *** 149,153 **** // final private OMExtensibleSerializer _extSer; // ! // OM(IStore store,Journal journal) { // // assert store != null; --- 149,153 ---- // final private OMExtensibleSerializer _extSer; // ! // OM(IIndexStore store,Journal journal) { // // assert store != null; *************** *** 291,295 **** // static class OMTx implements ITx { // ! // private final IStore store; // // private final Tx tx; --- 291,295 ---- // static class OMTx implements ITx { // ! // private final IIndexStore store; // // private final Tx tx; *************** *** 297,301 **** // private final TxExtensibleSerializer extser; // ! // OMTx(IStore store, Tx tx) { // // assert store != null; --- 297,301 ---- // private final TxExtensibleSerializer extser; // ! // OMTx(IIndexStore store, Tx tx) { // // assert store != null; |