Separate byte-level atomic-storage access
[controller.git] / atomix-storage / src / main / java / io / atomix / storage / journal / JournalWriter.java
index 064fd019ecb6459f245d40bb2711976ab668961a..ba7c5821aa0d014c5328b8903234fa4343dd0e5a 100644 (file)
@@ -57,6 +57,7 @@ public interface JournalWriter<E> {
      *
      * @param index the index to which to reset the head of the journal
      */
+    // FIXME: reconcile with reader's reset and truncate()
     void reset(long index);
 
     /**
@@ -64,6 +65,7 @@ public interface JournalWriter<E> {
      *
      * @param index The index to which to truncate the log.
      */
+    // FIXME: reconcile with reset()
     void truncate(long index);
 
     /**