Java Doc for LocalDispatcher.java in  » ERP-CRM-Financial » SourceTap-CRM » org » ofbiz » service » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ERP CRM Financial » SourceTap CRM » org.ofbiz.service 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.ofbiz.service.LocalDispatcher

All known Subclasses:   org.ofbiz.service.GenericAbstractDispatcher,
LocalDispatcher
public interface LocalDispatcher (Code)
Generic Services Local Dispatcher
author:
   Andy Zeneski
version:
   $Revision: 1.5 $
since:
   2.0




Method Summary
public  voidderegister()
    
public  GenericDelegatorgetDelegator()
    
public  DispatchContextgetDispatchContext()
    
public  JmsListenerFactorygetJMSListeneFactory()
     Gets the JmsListenerFactory which holds the message listeners.
public  JobManagergetJobManager()
    
public  StringgetName()
    
public  SecuritygetSecurity()
    
public  voidrunAsync(String serviceName, Map context, GenericRequester requester, boolean persist, int transactionTimeout, boolean requireNewTransaction)
     Run the service asynchronously, passing an instance of GenericRequester that will receive the result.
public  voidrunAsync(String serviceName, Map context, GenericRequester requester, boolean persist)
     Run the service asynchronously, passing an instance of GenericRequester that will receive the result.
public  voidrunAsync(String serviceName, Map context, GenericRequester requester)
     Run the service asynchronously, passing an instance of GenericRequester that will receive the result.
public  voidrunAsync(String serviceName, Map context, boolean persist)
     Run the service asynchronously and IGNORE the result.
public  voidrunAsync(String serviceName, Map context)
     Run the service asynchronously and IGNORE the result.
public  GenericResultWaiterrunAsyncWait(String serviceName, Map context, boolean persist)
     Run the service asynchronously.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
Parameters:
  persist - True for store/run; False for run.
public  GenericResultWaiterrunAsyncWait(String serviceName, Map context)
     Run the service asynchronously.
public  MaprunSync(String serviceName, Map context)
     Run the service synchronously and return the result.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
public  MaprunSync(String serviceName, Map context, int transactionTimeout, boolean requireNewTransaction)
     Run the service synchronously with a specified timeout and return the result.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
Parameters:
  transactionTimeout - the overriding timeout for the transaction (if we started it).
Parameters:
  requireNewTransaction - if true we will suspend and create a new transaction so we are sure to start.
public  voidrunSyncIgnore(String serviceName, Map context)
     Run the service synchronously and IGNORE the result.
public  voidrunSyncIgnore(String serviceName, Map context, int transactionTimeout, boolean requireNewTransaction)
     Run the service synchronously with a specified timeout and IGNORE the result.
public  voidschedule(String poolName, String serviceName, Map context, long startTime, int frequency, int interval, int count, long endTime)
     Schedule a service to run asynchronously at a specific start time.
public  voidschedule(String serviceName, Map context, long startTime, int frequency, int interval, int count, long endTime)
     Schedule a service to run asynchronously at a specific start time.
public  voidschedule(String serviceName, Map context, long startTime, int frequency, int interval, int count)
     Schedule a service to run asynchronously at a specific start time.
public  voidschedule(String serviceName, Map context, long startTime, int frequency, int interval, long endTime)
     Schedule a service to run asynchronously at a specific start time.
public  voidschedule(String serviceName, Map context, long startTime)
     Schedule a service to run asynchronously at a specific start time.



Method Detail
deregister
public void deregister()(Code)
De-Registers this LocalDispatcher with the ServiceDispatcher



getDelegator
public GenericDelegator getDelegator()(Code)
Gets the GenericEntityDelegator associated with this dispatcher GenericEntityDelegator associated with this dispatcher



getDispatchContext
public DispatchContext getDispatchContext()(Code)
Returns the DispatchContext created by this dispatcher DispatchContext created by this dispatcher



getJMSListeneFactory
public JmsListenerFactory getJMSListeneFactory()(Code)
Gets the JmsListenerFactory which holds the message listeners. JmsListenerFactory



getJobManager
public JobManager getJobManager()(Code)
Gets the JobManager associated with this dispatcher JobManager that is associated with this dispatcher



getName
public String getName()(Code)
Returns the Name of this local dispatcher String representing the name of this local dispatcher



getSecurity
public Security getSecurity()(Code)
Gets the Security object associated with this dispatcher Security object associated with this dispatcher



runAsync
public void runAsync(String serviceName, Map context, GenericRequester requester, boolean persist, int transactionTimeout, boolean requireNewTransaction) throws ServiceAuthException, ServiceValidationException, GenericServiceException(Code)
Run the service asynchronously, passing an instance of GenericRequester that will receive the result.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
Parameters:
  requester - Object implementing GenericRequester interface which will receive the result.
Parameters:
  persist - True for store/run; False for run.
Parameters:
  transactionTimeout - the overriding timeout for the transaction (if we started it).
Parameters:
  requireNewTransaction - if true we will suspend and create a new transaction so we are sure to start.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runAsync
public void runAsync(String serviceName, Map context, GenericRequester requester, boolean persist) throws ServiceAuthException, ServiceValidationException, GenericServiceException(Code)
Run the service asynchronously, passing an instance of GenericRequester that will receive the result.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
Parameters:
  requester - Object implementing GenericRequester interface which will receive the result.
Parameters:
  persist - True for store/run; False for run.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runAsync
public void runAsync(String serviceName, Map context, GenericRequester requester) throws ServiceAuthException, ServiceValidationException, GenericServiceException(Code)
Run the service asynchronously, passing an instance of GenericRequester that will receive the result. This method WILL persist the job.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
Parameters:
  requester - Object implementing GenericRequester interface which will receive the result.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runAsync
public void runAsync(String serviceName, Map context, boolean persist) throws ServiceAuthException, ServiceValidationException, GenericServiceException(Code)
Run the service asynchronously and IGNORE the result.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
Parameters:
  persist - True for store/run; False for run.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runAsync
public void runAsync(String serviceName, Map context) throws ServiceAuthException, ServiceValidationException, GenericServiceException(Code)
Run the service asynchronously and IGNORE the result. This method WILL persist the job.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runAsyncWait
public GenericResultWaiter runAsyncWait(String serviceName, Map context, boolean persist) throws ServiceAuthException, ServiceValidationException, GenericServiceException(Code)
Run the service asynchronously.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
Parameters:
  persist - True for store/run; False for run. A new GenericRequester object.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runAsyncWait
public GenericResultWaiter runAsyncWait(String serviceName, Map context) throws ServiceAuthException, ServiceValidationException, GenericServiceException(Code)
Run the service asynchronously. This method WILL persist the job.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context. A new GenericRequester object.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runSync
public Map runSync(String serviceName, Map context) throws GenericServiceException(Code)
Run the service synchronously and return the result.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context. Map of name, value pairs composing the result.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runSync
public Map runSync(String serviceName, Map context, int transactionTimeout, boolean requireNewTransaction) throws ServiceAuthException, ServiceValidationException, GenericServiceException(Code)
Run the service synchronously with a specified timeout and return the result.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
Parameters:
  transactionTimeout - the overriding timeout for the transaction (if we started it).
Parameters:
  requireNewTransaction - if true we will suspend and create a new transaction so we are sure to start. Map of name, value pairs composing the result.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runSyncIgnore
public void runSyncIgnore(String serviceName, Map context) throws GenericServiceException(Code)
Run the service synchronously and IGNORE the result.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



runSyncIgnore
public void runSyncIgnore(String serviceName, Map context, int transactionTimeout, boolean requireNewTransaction) throws ServiceAuthException, ServiceValidationException, GenericServiceException(Code)
Run the service synchronously with a specified timeout and IGNORE the result.
Parameters:
  serviceName - Name of the service to run.
Parameters:
  context - Map of name, value pairs composing the context.
Parameters:
  transactionTimeout - the overriding timeout for the transaction (if we started it).
Parameters:
  requireNewTransaction - if true we will suspend and create a new transaction so we are sure to start.
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



schedule
public void schedule(String poolName, String serviceName, Map context, long startTime, int frequency, int interval, int count, long endTime) throws GenericServiceException(Code)
Schedule a service to run asynchronously at a specific start time.
Parameters:
  poolName - Name of the service pool to send to.
Parameters:
  serviceName - Name of the service to invoke.
Parameters:
  context - The name/value pairs composing the context.
Parameters:
  startTime - The time to run this service.
Parameters:
  frequency - The frequency of the recurrence (RecurrenceRule.DAILY, etc).
Parameters:
  interval - The interval of the frequency recurrence.
Parameters:
  count - The number of times to repeat.
Parameters:
  endTime - The time in milliseconds the service should expire
throws:
  ServiceAuthException -
throws:
  ServiceValidationException -
throws:
  GenericServiceException -



schedule
public void schedule(String serviceName, Map context, long startTime, int frequency, int interval, int count, long endTime) throws GenericServiceException(Code)
Schedule a service to run asynchronously at a specific start time.
Parameters:
  serviceName - Name of the service to invoke.
Parameters:
  context - The name/value pairs composing the context.
Parameters:
  startTime - The time to run this service.
Parameters:
  frequency - The frequency of the recurrence (RecurrenceRule.DAILY, etc).
Parameters:
  interval - The interval of the frequency recurrence.
Parameters:
  count - The number of times to repeat.
Parameters:
  endTime - The time in milliseconds the service should expire
throws:
  GenericServiceException -



schedule
public void schedule(String serviceName, Map context, long startTime, int frequency, int interval, int count) throws GenericServiceException(Code)
Schedule a service to run asynchronously at a specific start time.
Parameters:
  serviceName - Name of the service to invoke.
Parameters:
  context - The name/value pairs composing the context.
Parameters:
  startTime - The time to run this service.
Parameters:
  frequency - The frequency of the recurrence (RecurrenceRule.DAILY, etc).
Parameters:
  interval - The interval of the frequency recurrence.
Parameters:
  count - The number of times to repeat.
throws:
  GenericServiceException -



schedule
public void schedule(String serviceName, Map context, long startTime, int frequency, int interval, long endTime) throws GenericServiceException(Code)
Schedule a service to run asynchronously at a specific start time.
Parameters:
  serviceName - Name of the service to invoke.
Parameters:
  context - The name/value pairs composing the context.
Parameters:
  startTime - The time to run this service.
Parameters:
  frequency - The frequency of the recurrence (RecurrenceRule.DAILY, etc).
Parameters:
  interval - The interval of the frequency recurrence.
Parameters:
  endTime - The time in milliseconds the service should expire
throws:
  GenericServiceException -



schedule
public void schedule(String serviceName, Map context, long startTime) throws GenericServiceException(Code)
Schedule a service to run asynchronously at a specific start time.
Parameters:
  serviceName - Name of the service to invoke.
Parameters:
  context - The name/value pairs composing the context.
Parameters:
  startTime - The time to run this service.
throws:
  GenericServiceException -



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.