本文整理汇总了Java中org.kuali.rice.ksb.messaging.MessageFetcher类的典型用法代码示例。如果您正苦于以下问题:Java MessageFetcher类的具体用法?Java MessageFetcher怎么用?Java MessageFetcher使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
MessageFetcher类属于org.kuali.rice.ksb.messaging包,在下文中一共展示了MessageFetcher类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: executeMessageFetcher
import org.kuali.rice.ksb.messaging.MessageFetcher; //导入依赖的package包/类
public ActionForward executeMessageFetcher(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) throws Exception {
MessageQueueForm routeQueueForm = (MessageQueueForm) form;
ActionMessages messages = new ActionMessages();
if (routeQueueForm.getMaxMessageFetcherMessages() == null || routeQueueForm.getMaxMessageFetcherMessages() <= 0) {
messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("routequeue.RouteQueueService.invalidMessages", routeQueueForm.getMaxMessageFetcherMessages()));
}
if (!messages.isEmpty()) {
saveMessages(request, messages);
return mapping.findForward("report");
}
new MessageFetcher(routeQueueForm.getMaxMessageFetcherMessages()).run();
return mapping.findForward("report");
}
示例2: requeueMessages
import org.kuali.rice.ksb.messaging.MessageFetcher; //导入依赖的package包/类
/**
* Used to refresh the service registry after the Application Context is initialized. This way any services that
* were exported on startup
* will be available in the service registry once startup is complete.
*/
private void requeueMessages() {
LOG.info("Refreshing Service Registry to export services to the bus.");
try {
KsbApiServiceLocator.getServiceBus().synchronizeLocalServices();
}catch (WebServiceException e) {
LOG.error("Caught web service exception while starting the KSB Configurer", e);
}
//automatically requeue documents sitting with status of 'R'
MessageFetcher messageFetcher = new MessageFetcher((Integer) null);
KSBServiceLocator.getThreadPool().execute(messageFetcher);
}
示例3: requeueMessages
import org.kuali.rice.ksb.messaging.MessageFetcher; //导入依赖的package包/类
/**
* Used to refresh the service registry after the Application Context is initialized. This way any services that were exported on startup
* will be available in the service registry once startup is complete.
*/
private void requeueMessages() {
LOG.info("Refreshing Service Registry to export services to the bus.");
KsbApiServiceLocator.getServiceBus().synchronizeLocalServices();
//automatically requeue documents sitting with status of 'R'
MessageFetcher messageFetcher = new MessageFetcher((Integer) null);
KSBServiceLocator.getThreadPool().execute(messageFetcher);
}