예제 #1
0
 public StateActionWriterNode(
     INode parent,
     string stateKey,
     StoreHolder storeHolder,
     IReducer reducer
     ) : base(parent)
 {
     this.stateKey    = stateKey;
     this.storeHolder = storeHolder;
     this.reducer     = reducer;
 }
예제 #2
0
 public StateWriterNode(INode parent, StoreHolder storeHolder) : base(parent)
 {
     this.storeHolder = storeHolder;
 }
예제 #3
0
 public StateReaderNode(StoreHolder storeHolder, string stateKey) : base(null)
 {
     this.storeHolder = storeHolder;
     this.stateKey    = stateKey;
 }