Package de.sub.goobi.helper.tasks

Examples of de.sub.goobi.helper.tasks.ProcessSwapInTask.execute()


   }

   private void swapIn() {
      ProcessSwapInTask psot = new ProcessSwapInTask();
      psot.initialize(proz);
      psot.execute();
      assertFalse(proz.isSwappedOutGui());
   }

}
View Full Code Here


    String pfad = getProcessDataDirectoryIgnoreSwapping();

    if (isSwappedOutGui()) {
      ProcessSwapInTask pst = new ProcessSwapInTask();
      pst.initialize(this);
      pst.execute();
      if (pst.getStatusProgress() == -1) {
        if (!new File(pfad, "images").exists() && !new File(pfad, "meta.xml").exists()) {
          throw new SwapException(pst.getStatusMessage());
        } else {
          setSwappedOutGui(false);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.