Interface BroadcastStateBootstrapFunction.Context

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long currentProcessingTime()
      Returns the current processing time.
      <K,​V>
      org.apache.flink.api.common.state.BroadcastState<K,​V>
      getBroadcastState​(org.apache.flink.api.common.state.MapStateDescriptor<K,​V> descriptor)
      Fetches the BroadcastState with the specified name.
    • Method Detail

      • currentProcessingTime

        long currentProcessingTime()
        Returns the current processing time.
      • getBroadcastState

        <K,​V> org.apache.flink.api.common.state.BroadcastState<K,​V> getBroadcastState​(org.apache.flink.api.common.state.MapStateDescriptor<K,​V> descriptor)
        Fetches the BroadcastState with the specified name.
        Parameters:
        descriptor - the MapStateDescriptor of the state to be fetched.
        Returns:
        The required broadcast state.