Update of /cvsroot/cweb/bigdata/src/java/com/bigdata/journal
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv16408/src/java/com/bigdata/journal
Modified Files:
IJournal.java AbstractJournal.java
Log Message:
Progress on the BigdataClient.
Index: IJournal.java
===================================================================
RCS file: /cvsroot/cweb/bigdata/src/java/com/bigdata/journal/IJournal.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** IJournal.java 16 Apr 2007 10:02:48 -0000 1.13
--- IJournal.java 25 Apr 2007 14:57:11 -0000 1.14
***************
*** 87,90 ****
--- 87,96 ----
/**
+ * Shutdown the journal politely. Scheduled operations will run to
+ * completion, but no new operations will be scheduled.
+ */
+ public void shutdown();
+
+ /**
* Return the named index which MAY may be invalidated by a
* {@link IAtomicStore#commit()}.
Index: AbstractJournal.java
===================================================================
RCS file: /cvsroot/cweb/bigdata/src/java/com/bigdata/journal/AbstractJournal.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** AbstractJournal.java 13 Apr 2007 15:04:23 -0000 1.12
--- AbstractJournal.java 25 Apr 2007 14:57:11 -0000 1.13
***************
*** 775,781 ****
/**
! * Shutdown the journal politely. Active transactions and transactions
! * pending commit will run to completion, but no new transactions will be
! * accepted.
*/
public void shutdown() {
--- 775,781 ----
/**
! * Shutdown the journal politely. Active writes, active transactions and
! * transactions pending commit will run to completion, but no new
! * transactions will be accepted.
*/
public void shutdown() {
|