Interface SyncStatusHolder
-
- All Known Implementing Classes:
DefaultSyncStatusHolder
,RAFileSyncStatusWriter
public interface SyncStatusHolder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getLastLine()
int
getLastLineDumpCount()
int
getLastTurnDumpCount()
int
getTurn()
boolean
isErrorsOccured()
void
logBeginTurn(int turn)
void
logFinishTurn(int turn, int turnDumpCount)
void
logLine(int lastLine, int lastLineDumpCount, boolean errorsOccured)
void
syncAborted()
void
syncDone()
-
-
-
Method Detail
-
getLastLine
int getLastLine()
-
getLastTurnDumpCount
int getLastTurnDumpCount()
-
getLastLineDumpCount
int getLastLineDumpCount()
-
getTurn
int getTurn()
-
isErrorsOccured
boolean isErrorsOccured()
-
logBeginTurn
void logBeginTurn(int turn)
-
logFinishTurn
void logFinishTurn(int turn, int turnDumpCount)
-
logLine
void logLine(int lastLine, int lastLineDumpCount, boolean errorsOccured)
-
syncDone
void syncDone()
-
syncAborted
void syncAborted()
-
-