Class ValueStateDescriptor<T>

    • Constructor Detail

      • ValueStateDescriptor

        public ValueStateDescriptor​(String stateId,
                                    TypeInformation<T> typeInfo)
        Creates a new ValueStateDescriptor with the given stateId and type.
        Parameters:
        stateId - The (unique) stateId for the state.
        typeInfo - The type of the values in the state.
      • ValueStateDescriptor

        public ValueStateDescriptor​(String stateId,
                                    TypeInformation<T> typeInfo,
                                    SerializerConfig serializerConfig)
        Creates a new ValueStateDescriptor with the given stateId and type.
        Parameters:
        stateId - The (unique) stateId for the state.
        typeInfo - The type of the values in the state.
        serializerConfig - The serializer related config used to generate TypeSerializer.