예제 #1
0
 /** Try and stop the current kdb query. */
 public void cancelExecution() {
   try {
     kdbClient.interruptQuery();
   } catch (Exception e) {
     logger.log(Level.WARNING, "Interrupt failed", e);
   }
 }