⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 localdispatcher.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
字号:
/* * $Id: LocalDispatcher.java 5462 2005-08-05 18:35:48Z jonesde $ * * Copyright (c) 2001, 2002 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */package org.ofbiz.service;import java.util.Map;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.security.Security;import org.ofbiz.service.jms.JmsListenerFactory;import org.ofbiz.service.job.JobManager;/** * Generic Services Local Dispatcher * * @author     <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> * @version    $Rev: 5462 $ * @since      2.0 */public interface LocalDispatcher {    /**     * Run the service synchronously and return the result.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @return Map of name, value pairs composing the result.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public Map runSync(String serviceName, Map context) throws GenericServiceException;    /**     * Run the service synchronously with a specified timeout and return the result.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @param transactionTimeout the overriding timeout for the transaction (if we started it).     * @param requireNewTransaction if true we will suspend and create a new transaction so we are sure to start.     * @return Map of name, value pairs composing the result.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public Map runSync(String serviceName, Map context, int transactionTimeout, boolean requireNewTransaction) throws ServiceAuthException, ServiceValidationException, GenericServiceException;    /**     * Run the service synchronously and IGNORE the result.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public void runSyncIgnore(String serviceName, Map context) throws GenericServiceException;    /**     * Run the service synchronously with a specified timeout and IGNORE the result.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @param transactionTimeout the overriding timeout for the transaction (if we started it).     * @param requireNewTransaction if true we will suspend and create a new transaction so we are sure to start.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public void runSyncIgnore(String serviceName, Map context, int transactionTimeout, boolean requireNewTransaction) throws ServiceAuthException, ServiceValidationException, GenericServiceException;        /**     * Run the service asynchronously, passing an instance of GenericRequester that will receive the result.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @param requester Object implementing GenericRequester interface which will receive the result.     * @param persist True for store/run; False for run.     * @param transactionTimeout the overriding timeout for the transaction (if we started it).     * @param requireNewTransaction if true we will suspend and create a new transaction so we are sure to start.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public void runAsync(String serviceName, Map context, GenericRequester requester, boolean persist, int transactionTimeout, boolean requireNewTransaction) throws ServiceAuthException, ServiceValidationException, GenericServiceException;    /**     * Run the service asynchronously, passing an instance of GenericRequester that will receive the result.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @param requester Object implementing GenericRequester interface which will receive the result.     * @param persist True for store/run; False for run.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public void runAsync(String serviceName, Map context, GenericRequester requester, boolean persist) throws ServiceAuthException, ServiceValidationException, GenericServiceException;    /**     * Run the service asynchronously, passing an instance of GenericRequester that will receive the result.     * This method WILL persist the job.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @param requester Object implementing GenericRequester interface which will receive the result.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public void runAsync(String serviceName, Map context, GenericRequester requester) throws ServiceAuthException, ServiceValidationException, GenericServiceException;    /**     * Run the service asynchronously and IGNORE the result.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @param persist True for store/run; False for run.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public void runAsync(String serviceName, Map context, boolean persist) throws ServiceAuthException, ServiceValidationException, GenericServiceException;    /**     * Run the service asynchronously and IGNORE the result. This method WILL persist the job.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public void runAsync(String serviceName, Map context) throws ServiceAuthException, ServiceValidationException, GenericServiceException;    /**     * Run the service asynchronously.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @param persist True for store/run; False for run.     * @return A new GenericRequester object.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public GenericResultWaiter runAsyncWait(String serviceName, Map context, boolean persist) throws ServiceAuthException, ServiceValidationException, GenericServiceException;    /**     * Run the service asynchronously. This method WILL persist the job.     * @param serviceName Name of the service to run.     * @param context Map of name, value pairs composing the context.     * @return A new GenericRequester object.     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public GenericResultWaiter runAsyncWait(String serviceName, Map context) throws ServiceAuthException, ServiceValidationException, GenericServiceException;    /**     * Register a callback listener on a specific service.     * @param serviceName Name of the service to link callback to.     * @param cb The callback implementation.     */    public void registerCallback(String serviceName, GenericServiceCallback cb);    /**     * Schedule a service to run asynchronously at a specific start time.     * @param poolName Name of the service pool to send to.     * @param serviceName Name of the service to invoke.     * @param context The name/value pairs composing the context.     * @param startTime The time to run this service.     * @param frequency The frequency of the recurrence (RecurrenceRule.DAILY, etc).     * @param interval The interval of the frequency recurrence.     * @param count The number of times to repeat.     * @param endTime The time in milliseconds the service should expire     * @param maxRetry The number of times we should retry on failure     * @throws ServiceAuthException     * @throws ServiceValidationException     * @throws GenericServiceException     */    public void schedule(String poolName, String serviceName, Map context, long startTime, int frequency, int interval, int count, long endTime, int maxRetry) throws GenericServiceException;    /**     * Schedule a service to run asynchronously at a specific start time.     * @param serviceName Name of the service to invoke.     * @param context The name/value pairs composing the context.     * @param startTime The time to run this service.     * @param frequency The frequency of the recurrence (RecurrenceRule.DAILY, etc).     * @param interval The interval of the frequency recurrence.     * @param count The number of times to repeat.     * @param endTime The time in milliseconds the service should expire     * @throws GenericServiceException     */    public void schedule(String serviceName, Map context, long startTime, int frequency, int interval, int count, long endTime) throws GenericServiceException;    /**     * Schedule a service to run asynchronously at a specific start time.     * @param serviceName Name of the service to invoke.     * @param context The name/value pairs composing the context.     * @param startTime The time to run this service.     * @param frequency The frequency of the recurrence (RecurrenceRule.DAILY, etc).     * @param interval The interval of the frequency recurrence.     * @param count The number of times to repeat.     * @throws GenericServiceException     */    public void schedule(String serviceName, Map context, long startTime, int frequency, int interval, int count) throws GenericServiceException;    /**     * Schedule a service to run asynchronously at a specific start time.     * @param serviceName Name of the service to invoke.     * @param context The name/value pairs composing the context.     * @param startTime The time to run this service.     * @param frequency The frequency of the recurrence (RecurrenceRule.DAILY, etc).     * @param interval The interval of the frequency recurrence.     * @param endTime The time in milliseconds the service should expire     * @throws GenericServiceException     */    public void schedule(String serviceName, Map context, long startTime, int frequency, int interval, long endTime) throws GenericServiceException;    /**     * Schedule a service to run asynchronously at a specific start time.     * @param serviceName Name of the service to invoke.     * @param context The name/value pairs composing the context.     * @param startTime The time to run this service.     * @throws GenericServiceException     */    public void schedule(String serviceName, Map context, long startTime) throws GenericServiceException;    /**     * Gets the JobManager associated with this dispatcher     * @return JobManager that is associated with this dispatcher     */    public JobManager getJobManager();    /**     * Gets the JmsListenerFactory which holds the message listeners.     * @return JmsListenerFactory     */    public JmsListenerFactory getJMSListeneFactory();    /**     * Gets the GenericEntityDelegator associated with this dispatcher     * @return GenericEntityDelegator associated with this dispatcher     */    public GenericDelegator getDelegator();    /**     * Gets the Security object associated with this dispatcher     * @return Security object associated with this dispatcher     */    public Security getSecurity();    /**     * Returns the Name of this local dispatcher     * @return String representing the name of this local dispatcher     */    public String getName();    /**     * Returns the DispatchContext created by this dispatcher     * @return DispatchContext created by this dispatcher     */    public DispatchContext getDispatchContext();    /**     * De-Registers this LocalDispatcher with the ServiceDispatcher     */    public void deregister();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -