Examples of ITaskLauncherService


Examples of org.fenrir.yggdrasil.core.service.ITaskLauncherService

        }

        /* Es programen les tasques automàtiques configurades en inicialitzar l'aplicació
         * TODO Fer possible el llançament de la tasca sense workspace carregat. Moure la configuració a application.xml / plugin.xml
         */
        ITaskLauncherService taskLauncherService = (ITaskLauncherService)applicationContext.getRegisteredComponent(ITaskLauncherService.class);
        taskLauncherService.initializeTasks();
        // Es programa la tasca automàtica per comprobar les actualitzacions
        taskLauncherService.scheduleTask(UpdateApplicationTask.ID);
       
        onWorkspaceLoaded();       
    }
View Full Code Here

Examples of org.fenrir.yggdrasil.core.service.ITaskLauncherService

            log.debug("Executant aturada del contexte del workspace");
        }
       
        onBeforeWorkspaceUnload();
       
        ITaskLauncherService taskLauncherService = (ITaskLauncherService)ApplicationContext.getInstance().getRegisteredComponent(ITaskLauncherService.class);
        taskLauncherService.shutdownAllTasks();
    }
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.