Package de.sub.goobi.helper.tasks

Examples of de.sub.goobi.helper.tasks.ProcessSwapOutTask


      proz.setSwappedOutGui(false);
      swapOut();
   }
  
   private void swapOut() {
      ProcessSwapOutTask psot = new ProcessSwapOutTask();
      psot.initialize(proz);
      psot.execute();
      assertTrue(proz.isSwappedOutGui());
   }
View Full Code Here


     * Prozesse auslagern ================================================================
     */
    private void swapOutProzesses(List<Prozess> inProzesse) {
        for (Prozess p : inProzesse) {

            ProcessSwapOutTask task = new ProcessSwapOutTask();
            task.initialize(p);
            LongRunningTaskManager.getInstance().addTask(task);
            LongRunningTaskManager.getInstance().executeTask(task);

        }
    }
View Full Code Here

TOP

Related Classes of de.sub.goobi.helper.tasks.ProcessSwapOutTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.