Uses of Interface
org.openrefine.model.changes.ChangeDataStore
-
Packages that use ChangeDataStore Package Description org.openrefine org.openrefine.history org.openrefine.io org.openrefine.model org.openrefine.model.changes -
-
Uses of ChangeDataStore in org.openrefine
Methods in org.openrefine that return ChangeDataStore Modifier and Type Method Description abstract ChangeDataStore
ProjectManager. getChangeDataStore(long projectID)
Return the change data store for a given projectChangeDataStore
ProjectManagerStub. getChangeDataStore(long projectID)
-
Uses of ChangeDataStore in org.openrefine.history
Fields in org.openrefine.history declared as ChangeDataStore Modifier and Type Field Description protected ChangeDataStore
History. _dataStore
Methods in org.openrefine.history that return ChangeDataStore Modifier and Type Method Description ChangeDataStore
History. getChangeDataStore()
ChangeDataStore
HistoryEntryManager. getChangeDataStore(Runner runner, File projectDir)
The change data store associated with a projectConstructors in org.openrefine.history with parameters of type ChangeDataStore Constructor Description History(Grid initialGrid, ChangeDataStore dataStore, GridCache gridStore, long projectId)
Creates an empty on an initial grid.History(Grid initialGrid, ChangeDataStore dataStore, GridCache gridStore, List<HistoryEntry> entries, int position, long projectId)
Constructs a history with an initial grid and a list of history entries. -
Uses of ChangeDataStore in org.openrefine.io
Methods in org.openrefine.io that return ChangeDataStore Modifier and Type Method Description ChangeDataStore
FileProjectManager. getChangeDataStore(long projectID)
-
Uses of ChangeDataStore in org.openrefine.model
Constructors in org.openrefine.model with parameters of type ChangeDataStore Constructor Description Project(long projectId, Grid initialState, ChangeDataStore dataStore, GridCache gridStore)
Creates a new project from an initial grid and a project id.Project(Grid initialState, ChangeDataStore dataStore, GridCache gridStore)
Creates a new project from an initial grid. -
Uses of ChangeDataStore in org.openrefine.model.changes
Classes in org.openrefine.model.changes that implement ChangeDataStore Modifier and Type Class Description class
FileChangeDataStore
AChangeDataStore
which stores change data on disk.class
LazyChangeDataStore
AChangeDataStore
which does not persist its change data, meaning that they do not have to be computed explicitly.Methods in org.openrefine.model.changes with parameters of type ChangeDataStore Modifier and Type Method Description static ChangeContext
ChangeContext. create(long historyEntryId, long projectId, ChangeDataStore dataStore, String description)
Creates a change context for a given history entry id and a project id.Constructors in org.openrefine.model.changes with parameters of type ChangeDataStore Constructor Description ChangeContextImpl(long historyEntryId, long projectId, ChangeDataStore dataStore, String description)
ChangeDataStoringProcess(String description, Optional<ChangeData<T>> storedChangeData, ChangeDataId changeDataId, ChangeDataStore changeDataStore, ChangeDataSerializer<T> serializer, Function<Optional<ChangeData<T>>,ChangeData<T>> completionProcess, File temporaryDirToDelete)
-