Java Doc for PING.java in  » Net » JGroups-2.4.1-sp3 » org » jgroups » protocols » 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 » Net » JGroups 2.4.1 sp3 » org.jgroups.protocols 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.jgroups.protocols.Discovery
   org.jgroups.protocols.PING

All known Subclasses:   org.jgroups.protocols.MPING,
PING
public class PING extends Discovery (Code)
The PING protocol layer retrieves the initial membership (used by the GMS when started by sending event FIND_INITIAL_MBRS down the stack). We do this by mcasting PING requests to an IP MCAST address (or, if gossiping is enabled, by contacting the GossipRouter). The responses should allow us to determine the coordinator whom we have to contact, e.g. in case we want to join the group. When we are a server (after having received the BECOME_SERVER event), we'll respond to PING requests with a PING response.

The FIND_INITIAL_MBRS event will eventually be answered with a FIND_INITIAL_MBRS_OK event up the stack. The following properties are available property: gossip_host - if you are using GOSSIP then this defines the host of the GossipRouter, default is null property: gossip_port - if you are using GOSSIP then this defines the port of the GossipRouter, default is null



Field Summary
 GossipClientclient
    
 Stringgossip_host
    
 intgossip_port
    
 longgossip_refresh
    
 Listinitial_hosts
    
final public static  Stringname
    
 intport_range
    


Method Summary
public  StringgetName()
    
public  voidhandleConnect()
    
public  voidhandleDisconnect()
    
public  voidlocalAddressSet(Address addr)
    
public  voidsendGetMembersRequest()
    
 voidsendMcastDiscoveryRequest(Message discovery_request)
    
public  booleansetProperties(Properties props)
     sets the properties of the PING protocol.
public  voidstop()
    

Field Detail
client
GossipClient client(Code)



gossip_host
String gossip_host(Code)



gossip_port
int gossip_port(Code)



gossip_refresh
long gossip_refresh(Code)



initial_hosts
List initial_hosts(Code)



name
final public static String name(Code)



port_range
int port_range(Code)





Method Detail
getName
public String getName()(Code)



handleConnect
public void handleConnect()(Code)



handleDisconnect
public void handleDisconnect()(Code)



localAddressSet
public void localAddressSet(Address addr)(Code)



sendGetMembersRequest
public void sendGetMembersRequest()(Code)



sendMcastDiscoveryRequest
void sendMcastDiscoveryRequest(Message discovery_request)(Code)



setProperties
public boolean setProperties(Properties props)(Code)
sets the properties of the PING protocol. The following properties are available property: timeout - the timeout (ms) to wait for the initial members, default is 3000=3 secs property: num_initial_members - the minimum number of initial members for a FIND_INITAL_MBRS, default is 2 property: gossip_host - if you are using GOSSIP then this defines the host of the GossipRouter, default is null property: gossip_port - if you are using GOSSIP then this defines the port of the GossipRouter, default is null
Parameters:
  props - - a property set containing only PING properties returns true if all properties were parsed properlyreturns false if there are unrecnogized properties in the property set



stop
public void stop()(Code)



Fields inherited from org.jgroups.protocols.Discovery
String group_addr(Code)(Java Doc)
boolean is_server(Code)(Java Doc)
Address local_addr(Code)(Java Doc)
final Vector members(Code)(Java Doc)
int num_discovery_requests(Code)(Java Doc)
int num_initial_members(Code)(Java Doc)
int num_ping_requests(Code)(Java Doc)
PingWaiter ping_waiter(Code)(Java Doc)
long timeout(Code)(Java Doc)

Methods inherited from org.jgroups.protocols.Discovery
public void down(Event evt)(Code)(Java Doc)
public Vector findInitialMembers()(Code)(Java Doc)
public String findInitialMembersAsString()(Code)(Java Doc)
public int getNumInitialMembers()(Code)(Java Doc)
public int getNumPingRequests()(Code)(Java Doc)
public int getNumberOfDiscoveryRequestsSent()(Code)(Java Doc)
public long getTimeout()(Code)(Java Doc)
public void handleConnect()(Code)(Java Doc)
public void handleConnectOK()(Code)(Java Doc)
public void handleDisconnect()(Code)(Java Doc)
public void localAddressSet(Address addr)(Code)(Java Doc)
final protected View makeView(Vector mbrs)(Code)(Java Doc)
public Vector providedUpServices()(Code)(Java Doc)
public void resetStats()(Code)(Java Doc)
abstract public void sendGetMembersRequest()(Code)(Java Doc)
public void setNumInitialMembers(int num_initial_members)(Code)(Java Doc)
public void setNumPingRequests(int num_ping_requests)(Code)(Java Doc)
public boolean setProperties(Properties props)(Code)(Java Doc)
public void setTimeout(long timeout)(Code)(Java Doc)
public void start() throws Exception(Code)(Java Doc)
public void stop()(Code)(Java Doc)
public void up(Event evt)(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.