Package de.sub.goobi.helper.tasks

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


     * TiffHeader von den Prozessen neu schreiben ================================================================
     */
    private void writeTiffHeader(List<Prozess> inProzesse) {
        for (Iterator<Prozess> iter = inProzesse.iterator(); iter.hasNext();) {
            Prozess proz = iter.next();
            TiffWriterTask task = new TiffWriterTask();
            task.initialize(proz);
            LongRunningTaskManager.getInstance().addTask(task);
        }
    }
View Full Code Here

TOP

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

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.