public void flushAll() {
   try {
     if (isPipelined()) {
       pipeline(pipeline.flushall());
       return;
     }
     client.flushall();
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }