Package org.jboss.seam.cron.spi.asynchronous

Examples of org.jboss.seam.cron.spi.asynchronous.CronAsynchronousProvider


            this.schedulingProvider = schedProvider;
            handleLifecycleInit(schedProvider);
            cronSchedInstaller.initProviderScheduling(manager, schedProvider, allObservers);
        }
        // process aynchronous observers if aynchronous provider exists
        final CronAsynchronousProvider asyncProvider = CdiUtils.getInstanceByType(manager, CronAsynchronousProvider.class);
        if (asyncProvider != null) {
            this.asynchronousProvider = asyncProvider;
            handleLifecycleInit(asyncProvider);
        }
View Full Code Here

TOP

Related Classes of org.jboss.seam.cron.spi.asynchronous.CronAsynchronousProvider

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.