org.jgroups

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 » Net » JGroups 2.4.1 sp3 » org.jgroups 
org.jgroups
Provides top-level public JGroups classes such as Channel, Message, etc.
Java Source File NameTypeComment
Address.javaInterface Abstract address.
BlockEvent.javaClass Trivial object that represents a block event.
Channel.javaClass A channel represents a group communication endpoint (like BSD datagram sockets).
ChannelClosedException.javaClass Thrown if an operation is attemped on a closed channel.
ChannelException.javaClass This class represents the super class for all exception types thrown by JGroups.
ChannelFactory.javaInterface A channel factory takes care of creation of channel implementations.
ChannelListener.javaInterface Allows a listener to be notified when important channel events occur.
ChannelNotConnectedException.javaClass Thrown if an operation is attemped on an unconnected channel.
Event.javaClass Used for inter-stack and intra-stack communication.
ExitEvent.javaClass Trivial object that represents an exit event.
ExtendedMembershipListener.javaInterface
ExtendedMessageListener.javaInterface ExtendedMessageListener has additional callbacks for:
  • partial state transfer - http://jira.jboss.com/jira/browse/JGRP-118
  • streaming state transfer - http://jira.jboss.com/jira/browse/JGRP-89

Application channels interested in using streaming state transfer, beside implementing this interface, have to be configured with STREAMING_STATE_TRANSFER protocol rather than the default STATE_TRANSFER protocol.

ExtendedReceiver.javaInterface Extends Receiver, plus the partial state transfer methods.
ExtendedReceiverAdapter.javaClass
GetStateEvent.javaClass Represents a GetState event.
Global.javaClass Globals used by JGroups packages.
Header.javaClass Abstract base class for all headers to be added to a Message.
JChannel.javaClass JChannel is a pure Java implementation of Channel. When a JChannel object is instantiated it automatically sets up the protocol stack.

Properties

Properties are used to configure a channel, and are accepted in several forms; the String form is described here. A property string consists of a number of properties separated by colons.

JChannelFactory.javaClass JChannelFactory creates pure Java implementations of the Channel interface.
Membership.javaClass Class to keep track of Addresses.
MembershipListener.javaInterface Allows a listener to be notified when group membership changes. These callbacks are used in org.jgroups.blocks.PullPushAdapter .

The MembershipListener interface is similar to the MessageListener interface: every time a new view, a suspicion message, or a block event is received, the corresponding method of the class implementing MembershipListener will be called. Oftentimes the only method containing any functionality will be viewAccepted() which notifies the receiver that a new member has joined the group or that an existing member has left or crashed.

MergeView.javaClass A view that is sent as a result of a merge. Whenever a group splits into subgroups, e.g., due to a network partition, and later the subgroups merge back together, a MergeView instead of a View will be received by the application.
Message.javaClass A Message encapsulates data sent to members of a group.
MessageListener.javaInterface Allows a listener to be notified when a message arrives.
Receiver.javaInterface
ReceiverAdapter.javaClass
SetStateEvent.javaClass Encapsulates a state returned by Channel.receive(), as requested by Channel.getState(s) previously.
StreamingGetStateEvent.javaClass Represents an event returned by channel.receive(), as a result of another channel instance requesting a state from this channel.
StreamingSetStateEvent.javaClass Represents an event returned by channel.receive(), as requested by channel.getState() previously.

Allows applications using a channel in a pull mode to receive a state from another channel instance providing state.

SuspectedException.javaClass Thrown if a message is sent to a suspected member.
SuspectEvent.javaClass Represents a suspect event.
TimeoutException.javaClass Thrown if members fail to respond in time.
Transport.javaInterface Defines a very small subset of the functionality of a channel, essentially only the methods for sending and receiving messages.
UnblockEvent.javaClass Trivial object that represents a block event.
UpHandler.javaInterface Provides a way of taking over a channel's tasks.
Version.javaClass We're using the scheme described at http://www.jboss.com/index.html?module=bb&op=viewtopic&t=77231 for major, minor and micro version numbers.
View.javaClass A view is a local representation of the current membership of a group.
ViewId.javaClass ViewIds are used for ordering views (each view has a ViewId and a list of members).
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.