Interface DelegatingStateBackend
-
- All Superinterfaces:
Serializable,StateBackend
@Internal public interface DelegatingStateBackend extends StateBackend
An interface to delegate state backend.As its name, it should include a state backend to delegate.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.flink.runtime.state.StateBackend
StateBackend.CustomInitializationMetrics, StateBackend.KeyedStateBackendParameters<K>, StateBackend.OperatorStateBackendParameters
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StateBackendgetDelegatedStateBackend()default StringgetName()Return the name of this backend, default is simple class name.-
Methods inherited from interface org.apache.flink.runtime.state.StateBackend
createAsyncKeyedStateBackend, createKeyedStateBackend, createOperatorStateBackend, supportsAsyncKeyedStateBackend, supportsNoClaimRestoreMode, supportsSavepointFormat, useManagedMemory
-
-
-
-
Method Detail
-
getDelegatedStateBackend
StateBackend getDelegatedStateBackend()
-
getName
default String getName()
Description copied from interface:StateBackendReturn the name of this backend, default is simple class name.DelegatingStateBackendmay return the simple class name of the delegated backend.- Specified by:
getNamein interfaceStateBackend
-
-