本文整理汇总了Java中org.kuali.rice.core.framework.lifecycle.ServiceDelegatingLifecycle类的典型用法代码示例。如果您正苦于以下问题:Java ServiceDelegatingLifecycle类的具体用法?Java ServiceDelegatingLifecycle怎么用?Java ServiceDelegatingLifecycle使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ServiceDelegatingLifecycle类属于org.kuali.rice.core.framework.lifecycle包,在下文中一共展示了ServiceDelegatingLifecycle类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: doAdditionalContextStartedLogic
import org.kuali.rice.core.framework.lifecycle.ServiceDelegatingLifecycle; //导入依赖的package包/类
protected void doAdditionalContextStartedLogic() {
validateServices(getServices());
ServicePublisher servicePublisher = new ServicePublisher(getServices());
Lifecycle serviceBus = new ServiceDelegatingLifecycle(KsbApiServiceLocator.SERVICE_BUS);
Lifecycle threadPool = new ServiceDelegatingLifecycle(KSBConstants.ServiceNames.THREAD_POOL_SERVICE);
Lifecycle scheduledThreadPool = new ServiceDelegatingLifecycle(KSBConstants.ServiceNames.SCHEDULED_THREAD_POOL_SERVICE);
try {
servicePublisher.start();
internalLifecycles.add(servicePublisher);
serviceBus.start();
internalLifecycles.add(serviceBus);
threadPool.start();
internalLifecycles.add(threadPool);
scheduledThreadPool.start();
internalLifecycles.add(scheduledThreadPool);
} catch (Exception e) {
if (e instanceof RuntimeException) {
throw (RuntimeException) e;
}
throw new RiceRuntimeException("Failed to initialize KSB on context startup");
}
// Don't requeue messages if we are in thin client mode
if (getRunMode() != RunMode.THIN) {
requeueMessages();
}
}
示例2: doAdditionalContextStartedLogic
import org.kuali.rice.core.framework.lifecycle.ServiceDelegatingLifecycle; //导入依赖的package包/类
protected void doAdditionalContextStartedLogic() {
validateServices(getServices());
ServicePublisher servicePublisher = new ServicePublisher(getServices());
Lifecycle serviceBus = new ServiceDelegatingLifecycle(KsbApiServiceLocator.SERVICE_BUS);
Lifecycle threadPool = new ServiceDelegatingLifecycle(KSBConstants.ServiceNames.THREAD_POOL_SERVICE);
Lifecycle scheduledThreadPool = new ServiceDelegatingLifecycle(KSBConstants.ServiceNames.SCHEDULED_THREAD_POOL_SERVICE);
try {
servicePublisher.start();
internalLifecycles.add(servicePublisher);
serviceBus.start();
internalLifecycles.add(serviceBus);
threadPool.start();
internalLifecycles.add(threadPool);
scheduledThreadPool.start();
internalLifecycles.add(scheduledThreadPool);
} catch (Exception e) {
if (e instanceof RuntimeException) {
throw (RuntimeException)e;
}
throw new RiceRuntimeException("Failed to initialize KSB on context startup");
}
// Don't requeue messages if we are in thin client mode
if (getRunMode() != RunMode.THIN) {
requeueMessages();
}
}