Interface BroadcastStateDeclaration<K,V>
-
- All Superinterfaces:
Serializable,StateDeclaration
@Experimental public interface BroadcastStateDeclaration<K,V> extends StateDeclaration
This represents a declaration of the broadcast state.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.flink.api.common.state.StateDeclaration
StateDeclaration.RedistributionMode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeDescriptor<K>getKeyTypeDescriptor()Get type descriptor of this broadcast state's key.TypeDescriptor<V>getValueTypeDescriptor()Get type descriptor of this broadcast state's value.-
Methods inherited from interface org.apache.flink.api.common.state.StateDeclaration
getName, getRedistributionMode
-
-
-
-
Method Detail
-
getKeyTypeDescriptor
TypeDescriptor<K> getKeyTypeDescriptor()
Get type descriptor of this broadcast state's key.
-
getValueTypeDescriptor
TypeDescriptor<V> getValueTypeDescriptor()
Get type descriptor of this broadcast state's value.
-
-