Interface and Description |
---|
org.apache.flink.api.common.functions.FoldFunction
use
AggregateFunction instead |
org.apache.flink.api.common.state.FoldingState
will be removed in a future version
|
org.apache.flink.types.Key
The Key type is a relict of a deprecated and removed API and will be removed
in future (2.0) versions as well.
|
Class and Description |
---|
org.apache.flink.api.common.state.FoldingStateDescriptor
will be removed in a future version in favor of
AggregatingStateDescriptor |
org.apache.flink.api.common.functions.RichFoldFunction
use
RichAggregateFunction instead |
org.apache.flink.migration.util.SerializedValue
Only used internally when migrating from previous savepoint versions.
|
Constructor and Description |
---|
org.apache.flink.api.common.state.ValueStateDescriptor(String, Class<T>, T)
Use
ValueStateDescriptor.ValueStateDescriptor(String, Class) instead and manually manage
the default value by checking whether the contents of the state is null . |
org.apache.flink.api.common.state.ValueStateDescriptor(String, TypeInformation<T>, T)
Use
ValueStateDescriptor.ValueStateDescriptor(String, TypeInformation) instead and manually
manage the default value by checking whether the contents of the state is null . |
org.apache.flink.api.common.state.ValueStateDescriptor(String, TypeSerializer<T>, T)
Use
ValueStateDescriptor.ValueStateDescriptor(String, TypeSerializer) instead and manually
manage the default value by checking whether the contents of the state is null . |
Enum Constant and Description |
---|
org.apache.flink.api.common.state.StateDescriptor.Type.UNKNOWN
Enum for migrating from old checkpoints/savepoint versions.
|
Copyright © 2014–2017 The Apache Software Foundation. All rights reserved.