Interface JourneyDb
-
- All Implemented Interfaces:
public interface JourneyDb
-
-
Method Summary
Modifier and Type Method Description abstract Unitinsert(String serverId, Journey journey)abstract List<Journey>getPendingJourney(String serverId)abstract UnitsetUpdateProgress(String serverId, String guid)abstract UnitsetUpdateSuccess(String serverId, String guid)abstract UnitsetUpdateError(String serverId, String guid)abstract UnitcleanupJourney(String serverId, String guid)abstract List<String>getDeletedList(String serverId)-
-
Method Detail
-
getPendingJourney
abstract List<Journey> getPendingJourney(String serverId)
-
setUpdateProgress
abstract Unit setUpdateProgress(String serverId, String guid)
-
setUpdateSuccess
abstract Unit setUpdateSuccess(String serverId, String guid)
-
setUpdateError
abstract Unit setUpdateError(String serverId, String guid)
-
cleanupJourney
abstract Unit cleanupJourney(String serverId, String guid)
-
getDeletedList
abstract List<String> getDeletedList(String serverId)
-
-
-
-