Uses of Class
org.openrefine.model.changes.ChangeDataId
-
Packages that use ChangeDataId Package Description org.openrefine.model.changes org.openrefine.process -
-
Uses of ChangeDataId in org.openrefine.model.changes
Methods in org.openrefine.model.changes that return ChangeDataId Modifier and Type Method Description ChangeDataIdFileChangeDataStore.ChangeDataStoringProcess. getChangeDataId()Methods in org.openrefine.model.changes that return types with arguments of type ChangeDataId Modifier and Type Method Description List<ChangeDataId>ChangeDataStore. getChangeDataIds(long historyEntryId)Retrieve the list of change data ids associated with a given history entry.List<ChangeDataId>FileChangeDataStore. getChangeDataIds(long historyEntryId)List<ChangeDataId>LazyChangeDataStore. getChangeDataIds(long historyEntryId)Methods in org.openrefine.model.changes with parameters of type ChangeDataId Modifier and Type Method Description protected voidFileChangeDataStore. registerId(ChangeDataId id)<T> ChangeData<T>ChangeDataStore. retrieve(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer)Loads back aChangeDatathat has been persisted before.<T> ChangeData<T>FileChangeDataStore. retrieve(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer)<T> ChangeData<T>LazyChangeDataStore. retrieve(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer)<T> ChangeData<T>ChangeDataStore. retrieveOrCompute(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Function<Optional<ChangeData<T>>,ChangeData<T>> completionProcess, String description)Retrieves a change data if it exists already, and if it does not (or is incomplete), start a process to finish computing it.<T> ChangeData<T>FileChangeDataStore. retrieveOrCompute(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Function<Optional<ChangeData<T>>,ChangeData<T>> completionProcess, String description)<T> ChangeData<T>LazyChangeDataStore. retrieveOrCompute(ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Function<Optional<ChangeData<T>>,ChangeData<T>> completionProcess, String description)<T> voidChangeDataStore. store(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Optional<ProgressReporter> progressReporter)Stores aChangeData, which might imply explicitly computing all its values (if the store persists its changes).<T> voidFileChangeDataStore. store(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Optional<ProgressReporter> progressReporter)<T> voidLazyChangeDataStore. store(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer, Optional<ProgressReporter> progressReporter)<T> ProgressingFuture<Void>ChangeDataStore. storeAsync(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer)Asynchronously stores aChangeData, which might imply explicitly computing all its values (if the store persists its changes).<T> ProgressingFuture<Void>FileChangeDataStore. storeAsync(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer)<T> ProgressingFuture<Void>LazyChangeDataStore. storeAsync(ChangeData<T> data, ChangeDataId changeDataId, ChangeDataSerializer<T> serializer)Constructors in org.openrefine.model.changes with parameters of type ChangeDataId Constructor Description ChangeDataStoringProcess(String description, Optional<ChangeData<T>> storedChangeData, ChangeDataId changeDataId, ChangeDataStore changeDataStore, ChangeDataSerializer<T> serializer, Function<Optional<ChangeData<T>>,ChangeData<T>> completionProcess, File temporaryDirToDelete) -
Uses of ChangeDataId in org.openrefine.process
Methods in org.openrefine.process that return ChangeDataId Modifier and Type Method Description abstract ChangeDataIdProcess. getChangeDataId()Methods in org.openrefine.process with parameters of type ChangeDataId Modifier and Type Method Description ProcessProcessManager. getProcess(ChangeDataId changeDataId)Gets any process that is fetching the supplied change data.
-