Beispiel #1
0
 /**
  * <code>terminate</code> halts excecution of this plugin. This provides a clean way to exit /stop
  * operations of this particular plugin.
  */
 @Override
 public void terminate() {
   // Shutdown unirest.
   try {
     Unirest.shutdown();
   } catch (IOException e) {
     log.warn(" terminate : problem closing unirest", e);
   }
 }