Ejemplo n.º 1
0
        public override IListState <TValue> GetListState <TValue>(ListStateDescriptor <TValue> stateProperties)
        {
            var keyedStateStore = CheckPreconditionsAndGetKeyedStateStore(stateProperties);

            stateProperties.InitializeSerializerUnlessSet(ExecutionConfig);

            return(keyedStateStore.GetListState(stateProperties));
        }
 public virtual IListState <TValue> GetListState <TValue>(ListStateDescriptor <TValue> stateProperties)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public override IListState <TValue> GetListState <TValue>(ListStateDescriptor <TValue> stateProperties)
 {
     throw new InvalidOperationException("Per-window state is not allowed when using merging windows.");
 }
Ejemplo n.º 4
0
 public virtual IListState <TValue> GetListState <TValue>(ListStateDescriptor <TValue> stateProperties)
 {
     throw new UnSupportedOperationException("This state is only accessible by functions executed on a KeyedStream");
 }
Ejemplo n.º 5
0
 public IListState <TValue> GetListState <TValue>(ListStateDescriptor <TValue> stateDescriptor)
 {
     throw new System.NotImplementedException();
 }