예제 #1
0
 public ReadKeyIndexStringCommand(TableStreamAsyncReader reader, string key, string separater, Action <string> callback)
 {
     this.reader    = reader;
     this.key       = key;
     this.separater = separater;
     this.callback  = callback;
 }
예제 #2
0
 public BlobEndCommand(TableStreamAsyncReader reader)
 {
     this.reader = reader;
 }
예제 #3
0
 public ReadKeyStringCommand(TableStreamAsyncReader reader, string key, Action <string> callback)
 {
     this.reader   = reader;
     this.key      = key;
     this.callback = callback;
 }
예제 #4
0
 public BlobBeginCommand(TableStreamAsyncReader reader, string key)
 {
     this.reader = reader;
     this.key    = key;
 }