Java Doc for DiscoveryComm.java in  » J2EE » JOnAS-4.8.6 » org » objectweb » jonas » discovery » 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 » JOnAS 4.8.6 » org.objectweb.jonas.discovery 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.objectweb.jonas.discovery.DiscoveryComm

All known Subclasses:   org.objectweb.jonas.discovery.DiscoveryGreetingResponder,
DiscoveryComm
public class DiscoveryComm implements Runnable(Code)

author:
   Takoua Abdellatif
version:
   1.0


Field Summary
final public static  intRECEIVE_BUFFER_SIZE
     Size of buffer to read incoming packets into.
protected  StringdomainName
     Domain name that this instance belongs to.
protected  StringjonasName
     Name for this jonas instance.
protected  MulticastSocketmulticastSocket
    
protected  booleannotStopped
    
protected  StringserverId
     The server ID of the jonas instance.
protected  DatagramSocketunicastSocket
    
protected  String[]urls
     MBean server connection URLs for this server.

Constructor Summary
public  DiscoveryComm(DiscoveryManager dm)
    

Method Summary
public  DiscEventcreateNotifMessage(String state)
    
protected  DatagramPacketgetDatagram(int length)
     Construct a new datagram.
public  StringgetServerId()
    
protected  voidjoin()
    
public  voidrun()
    
public  voidsendNotif(DiscMessage msg)
     sends (multicasts) a Discovery Message to the group.
protected  voidsendResponse(DiscMessage msg, InetAddress destAddress, int port)
    
protected  voidsetDomainName(String domainName)
    
protected  voidsetJonasName(String jonasName)
    
public  voidsetServerId(String serverId)
    
protected  voidsetUrls(String[] urls)
    
public  voidstop()
     sends a notification message to notify that the server is stopping.

Field Detail
RECEIVE_BUFFER_SIZE
final public static int RECEIVE_BUFFER_SIZE(Code)
Size of buffer to read incoming packets into.



domainName
protected String domainName(Code)
Domain name that this instance belongs to.



jonasName
protected String jonasName(Code)
Name for this jonas instance.



multicastSocket
protected MulticastSocket multicastSocket(Code)
Used to multicast a discovery event on run() execution



notStopped
protected boolean notStopped(Code)
Set to false if the thread is stopped



serverId
protected String serverId(Code)
The server ID of the jonas instance.



unicastSocket
protected DatagramSocket unicastSocket(Code)
Uset to send a discovery event as response to a discovey message



urls
protected String[] urls(Code)
MBean server connection URLs for this server.




Constructor Detail
DiscoveryComm
public DiscoveryComm(DiscoveryManager dm)(Code)
Constructs a DiscoveryComm associated to the DiscoveryManager
Parameters:
  dm - DiscoveryManager to which this thread is associated




Method Detail
createNotifMessage
public DiscEvent createNotifMessage(String state) throws Exception(Code)
Create a discovery event to notify about a state change of the event sender
Parameters:
  state - - RUNNING if the sender notifies that it gets running- STOPPING if the sender notifies that it stops running a Discovery event (notification)
throws:
  Exception - is thrown if the jmx service is not reached.



getDatagram
protected DatagramPacket getDatagram(int length)(Code)
Construct a new datagram.
Parameters:
  length - packets length to be received the created datagram



getServerId
public String getServerId()(Code)



join
protected void join()(Code)
Creates a MulticastSocket and joins the group of multicas host identified by the InetAddress destAddress



run
public void run()(Code)

See Also:   java.lang.Runnable.run



sendNotif
public void sendNotif(DiscMessage msg)(Code)
sends (multicasts) a Discovery Message to the group.
Parameters:
  msg - The message to send.



sendResponse
protected void sendResponse(DiscMessage msg, InetAddress destAddress, int port)(Code)
Send response to a DiscoveryMessage
Parameters:
  msg - Containes a DiscoveryMessage allowing to inform about the responder(name, state, URLs)
Parameters:
  destAddress - the destination address picked up from the request
Parameters:
  port - the destination port picked up from the request



setDomainName
protected void setDomainName(String domainName)(Code)

Parameters:
  domainName - The domainName to set.



setJonasName
protected void setJonasName(String jonasName)(Code)

Parameters:
  jonasName - The jonasName to set.



setServerId
public void setServerId(String serverId)(Code)



setUrls
protected void setUrls(String[] urls)(Code)

Parameters:
  urls - The urls to set.



stop
public void stop()(Code)
sends a notification message to notify that the server is stopping.



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.