Esempio n. 1
0
 public object[] EndPipe()
 {
     try
     {
         return(_pipeline.Flush());
     }
     catch (IOException)
     {
         if (ReconnectAttempts == 0)
         {
             throw;
         }
         Reconnect();
         return(EndPipe());
     }
 }
Esempio n. 2
0
 public object[] EndPipe()
 {
     return(_pipeline.Flush());
 }