📄 localdispatcher.java
字号:
/*
* $Id: LocalDispatcher.java,v 1.5 2004/02/19 18:52:35 ajzeneski Exp $
*
* 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 $Revision: 1.5 $
* @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;
/**
* 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
* @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) 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 + -