Package org.apache.flink.runtime.state
Interface OwnedTaskLocalStateStore
-
- All Superinterfaces:
TaskLocalStateStore
- All Known Implementing Classes:
ChangelogTaskLocalStateStore
,NoOpTaskLocalStateStoreImpl
,TaskLocalStateStoreImpl
@Internal public interface OwnedTaskLocalStateStore extends TaskLocalStateStore
This interface represents the administrative interface toTaskLocalStateStore
, that only the owner of the object should see. All clients that want to use the service should only see theTaskLocalStateStore
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletableFuture<Void>
dispose()
Disposes the task local state store.-
Methods inherited from interface org.apache.flink.runtime.state.TaskLocalStateStore
abortCheckpoint, confirmCheckpoint, getLocalRecoveryConfig, pruneMatchingCheckpoints, retrieveLocalState, storeLocalState
-
-
-
-
Method Detail
-
dispose
CompletableFuture<Void> dispose()
Disposes the task local state store. Disposal can happen asynchronously and completion is signaled through the returned future.
-
-