Java Doc for AbstractApplicationEventMulticaster.java in  » J2EE » spring-framework-2.0.6 » org » springframework » context » event » 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 » J2EE » spring framework 2.0.6 » org.springframework.context.event 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.springframework.context.event.AbstractApplicationEventMulticaster

All known Subclasses:   org.springframework.context.event.SimpleApplicationEventMulticaster,
AbstractApplicationEventMulticaster
abstract public class AbstractApplicationEventMulticaster implements ApplicationEventMulticaster(Code)
Abstract implementation of the ApplicationEventMulticaster interface, providing the basic listener registration facility.

Doesn't permit multiple instances of the same listener by default, as it keeps listeners in a linked Set. The collection class used to hold ApplicationListener objects can be overridden through the "collectionClass" bean property.

Note that this class doesn't try to do anything clever to ensure thread safety if listeners are added or removed at runtime. A technique such as Copy-on-Write (Lea:137) could be used to ensure this, but the assumption in the basic version of the class is that listeners will be added at application configuration time and not added or removed as the application runs.

A custom collection class must be specified to allow for thread-safe runtime registration of listeners. A good candidate for this is Doug Lea's java.util.concurrent.CopyOnWriteArraySet or its non-JDK predecessor, EDU.oswego.cs.dl.util.concurrent.CopyOnWriteArraySet (or the respective CopyOnWriteArrayList version, allowing for registering the same listener multiple times). Those classes provide a thread-safe Iterator, optimized for read-mostly usage - matching this use case nicely.

Implementing ApplicationEventMulticaster's actual multicastEvent method is left to subclasses. SimpleApplicationEventMulticaster simply multicasts all events to all registered listeners, invoking them in the calling thread. Alternative implementations could be more sophisticated in those respects.
author:
   Juergen Hoeller
since:
   1.2.3
See Also:   AbstractApplicationEventMulticaster.setCollectionClass
See Also:   AbstractApplicationEventMulticaster.getApplicationListeners()
See Also:   SimpleApplicationEventMulticaster





Method Summary
public  voidaddApplicationListener(ApplicationListener listener)
    
protected  CollectiongetApplicationListeners()
     Return the current Collection of ApplicationListeners.

Note that this is the raw Collection of ApplicationListeners, potentially modified when new listeners get registered or existing ones get removed.

public  voidremoveAllListeners()
    
public  voidremoveApplicationListener(ApplicationListener listener)
    
public  voidsetCollectionClass(Class collectionClass)
     Specify the collection class to use.



Method Detail
addApplicationListener
public void addApplicationListener(ApplicationListener listener)(Code)



getApplicationListeners
protected Collection getApplicationListeners()(Code)
Return the current Collection of ApplicationListeners.

Note that this is the raw Collection of ApplicationListeners, potentially modified when new listeners get registered or existing ones get removed. This Collection is not a snapshot copy. a Collection of ApplicationListeners
See Also:   org.springframework.context.ApplicationListener




removeAllListeners
public void removeAllListeners()(Code)



removeApplicationListener
public void removeApplicationListener(ApplicationListener listener)(Code)



setCollectionClass
public void setCollectionClass(Class collectionClass)(Code)
Specify the collection class to use. Can be populated with a fully qualified class name when defined in a Spring application context.

Default is a linked HashSet, keeping the registration order. If no linked Set implementation is available, a plain HashSet will be used as fallback (not keeping the registration order).

Note that a Set class specified will not permit multiple instances of the same listener, while a List class will allow for registering the same listener multiple times.

Consider Doug Lea's java.util.concurrent.CopyOnWriteArraySet or its non-JDK predecessor, EDU.oswego.cs.dl.util.concurrent.CopyOnWriteArraySet (or the respective CopyOnWriteArrayList version). Those classes provide a thread-safe Iterator, optimized for read-mostly usage - matching this use case nicely.
See Also:   org.springframework.core.CollectionFactory.createLinkedSetIfPossible
See Also:   java.util.concurrent.CopyOnWriteArraySet
See Also:   EDU.oswego.cs.dl.util.concurrent.CopyOnWriteArraySet




Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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