Java Doc for DomainParticipantImpl.java in  » Collaboration » JacORB » org » jacorb » dds » 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 » Collaboration » JacORB » org.jacorb.dds 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.jacorb.dds.DomainParticipantImpl

DomainParticipantImpl
public class DomainParticipantImpl extends DomainParticipantPOA (Code)
The DomainParticipant object plays several roles: - It acts as a container for all other Entity objects - It acts as factory for the Publisher, Subscriber, Topic and MultiTopic Entity objects. - It represents the participation of the application on a communication plane that isolates applications running on the same set of physical computers from each other. A domain establishes a 'virtual network' linking all applications that share the same domainId9 and isolating them from applications running on different domains. In this way, several independent distributed applications can coexist in the same physical network without interfering, or even being aware of each other. - It provides administration services in the domain, offering operations that allow the application to 'ignore' locally any information about a given participant



Constructor Summary
public  DomainParticipantImpl(int domainId, org.omg.dds.DomainParticipantQos qos, org.omg.dds.DomainParticipantListener a_listener)
    

Method Summary
public  voidaddPublisher(Publisher Pub)
    
public  voidaddTopic(Topic Top)
    
public  voidaddsubscriber(Subscriber Sub)
    
public  voidassert_liveliness()
    
public  ContentFilteredTopiccreate_contentfilteredtopic(String name, Topic related_topic, String filter_expression, String[] filter_parameters)
    
public  MultiTopiccreate_multitopic(String name, String type_name, String subscription_expression, String[] expression_parameters)
    
public  Publishercreate_publisher(PublisherQos qos, PublisherListener a_listener)
    
public  Subscribercreate_subscriber(SubscriberQos qos, SubscriberListener a_listener)
    
public  Topiccreate_topic(String topic_name, String type_name, TopicQos qos, TopicListener a_listener)
    
public  voiddeletePublisher(Publisher Pub)
    
public  voiddeleteSubscriber(Subscriber Sub)
    
public  voiddeleteTopic(Topic Top)
    
public  intdelete_contained_entities()
    
public  intdelete_contentfilteredtopic(ContentFilteredTopic a_contentfilteredtopic)
    
public  intdelete_multitopic(MultiTopic a_multitopic)
    
public  intdelete_publisher(Publisher p)
    
public  intdelete_subscriber(Subscriber s)
    
public  intdelete_topic(Topic a_topic)
    
public  intenable()
    
public  Topicfind_topic(String topic_name, Duration_t timeout)
    
public  VectorgetVector_Publisher()
    
public  VectorgetVector_Subscriber()
    
public  VectorgetVector_Topic()
    
public  Subscriberget_builtin_subscriber()
    
public  voidget_default_publisher_qos(PublisherQosHolder qos)
    
public  voidget_default_subscriber_qos(SubscriberQosHolder qos)
    
public  voidget_default_topic_qos(TopicQosHolder qos)
    
public  intget_domain_id()
    
public  DomainParticipantListenerget_listener()
    
public  voidget_qos(DomainParticipantQosHolder qos)
    
public  intget_status_changes()
    
public  StatusConditionget_statuscondition()
    
public  intignore_participant(int handle)
    
public  intignore_publication(int handle)
    
public  intignore_subscription(int handle)
    
public  intignore_topic(int handle)
    
public  booleanisDeletable()
    
public  TopicDescriptionlookup_topicdescription(String name)
    
public  voidsetORB(org.omg.CORBA.ORB orb)
    
public  voidsetPOA(org.omg.PortableServer.POA poa)
    
public  intset_default_publisher_qos(PublisherQos qos)
    
public  intset_default_subscriber_qos(SubscriberQos qos)
    
public  intset_default_topic_qos(TopicQos qos)
    
public  intset_listener(DomainParticipantListener a_listener, int mask)
    
public  intset_qos(DomainParticipantQos qos)
    


Constructor Detail
DomainParticipantImpl
public DomainParticipantImpl(int domainId, org.omg.dds.DomainParticipantQos qos, org.omg.dds.DomainParticipantListener a_listener)(Code)

Parameters:
  domainId -
Parameters:
  qos -
Parameters:
  a_listener -




Method Detail
addPublisher
public void addPublisher(Publisher Pub)(Code)

Parameters:
  Pub -



addTopic
public void addTopic(Topic Top)(Code)

Parameters:
  Top -



addsubscriber
public void addsubscriber(Subscriber Sub)(Code)

Parameters:
  Sub -



assert_liveliness
public void assert_liveliness()(Code)
Not Implemented



create_contentfilteredtopic
public ContentFilteredTopic create_contentfilteredtopic(String name, Topic related_topic, String filter_expression, String[] filter_parameters)(Code)
Not Implemented



create_multitopic
public MultiTopic create_multitopic(String name, String type_name, String subscription_expression, String[] expression_parameters)(Code)
Not Implemented



create_publisher
public Publisher create_publisher(PublisherQos qos, PublisherListener a_listener)(Code)

Parameters:
  qos -
Parameters:
  a_listener -



create_subscriber
public Subscriber create_subscriber(SubscriberQos qos, SubscriberListener a_listener)(Code)

Parameters:
  qos -
Parameters:
  a_listener -



create_topic
public Topic create_topic(String topic_name, String type_name, TopicQos qos, TopicListener a_listener)(Code)

Parameters:
  topic_name -
Parameters:
  type_name -
Parameters:
  qos -
Parameters:
  a_listener -



deletePublisher
public void deletePublisher(Publisher Pub)(Code)

Parameters:
  Pub -



deleteSubscriber
public void deleteSubscriber(Subscriber Sub)(Code)

Parameters:
  Sub -



deleteTopic
public void deleteTopic(Topic Top)(Code)

Parameters:
  Top -



delete_contained_entities
public int delete_contained_entities()(Code)
Not Implemented



delete_contentfilteredtopic
public int delete_contentfilteredtopic(ContentFilteredTopic a_contentfilteredtopic)(Code)
Not Implemented



delete_multitopic
public int delete_multitopic(MultiTopic a_multitopic)(Code)
Not Implemented



delete_publisher
public int delete_publisher(Publisher p)(Code)

Parameters:
  p -



delete_subscriber
public int delete_subscriber(Subscriber s)(Code)

Parameters:
  s -



delete_topic
public int delete_topic(Topic a_topic)(Code)

Parameters:
  a_topic -



enable
public int enable()(Code)
Not Implemented



find_topic
public Topic find_topic(String topic_name, Duration_t timeout)(Code)



getVector_Publisher
public Vector getVector_Publisher()(Code)
Returns the vector_Publisher.



getVector_Subscriber
public Vector getVector_Subscriber()(Code)
Returns the vector_Subscriber.



getVector_Topic
public Vector getVector_Topic()(Code)
Returns the vector_Topic.



get_builtin_subscriber
public Subscriber get_builtin_subscriber()(Code)
Not Implemented



get_default_publisher_qos
public void get_default_publisher_qos(PublisherQosHolder qos)(Code)
Not Implemented



get_default_subscriber_qos
public void get_default_subscriber_qos(SubscriberQosHolder qos)(Code)
Not Implemented



get_default_topic_qos
public void get_default_topic_qos(TopicQosHolder qos)(Code)
Not Implemented



get_domain_id
public int get_domain_id()(Code)
Not Implemented



get_listener
public DomainParticipantListener get_listener()(Code)
Not Implemented



get_qos
public void get_qos(DomainParticipantQosHolder qos)(Code)

Parameters:
  qos -



get_status_changes
public int get_status_changes()(Code)
Not Implemented



get_statuscondition
public StatusCondition get_statuscondition()(Code)
Not Implemented



ignore_participant
public int ignore_participant(int handle)(Code)
Not Implemented



ignore_publication
public int ignore_publication(int handle)(Code)
Not Implemented



ignore_subscription
public int ignore_subscription(int handle)(Code)
Not Implemented



ignore_topic
public int ignore_topic(int handle)(Code)
Not Implemented



isDeletable
public boolean isDeletable()(Code)



lookup_topicdescription
public TopicDescription lookup_topicdescription(String name)(Code)

Parameters:
  name -



setORB
public void setORB(org.omg.CORBA.ORB orb)(Code)
Sets the oRB attribute of the RepertoryImpl object
Parameters:
  orb - The new oRB value



setPOA
public void setPOA(org.omg.PortableServer.POA poa)(Code)
Sets the pOA attribute of the RepertoryImpl object
Parameters:
  poa - The new pOA value



set_default_publisher_qos
public int set_default_publisher_qos(PublisherQos qos)(Code)
Not Implemented



set_default_subscriber_qos
public int set_default_subscriber_qos(SubscriberQos qos)(Code)
Not Implemented



set_default_topic_qos
public int set_default_topic_qos(TopicQos qos)(Code)
Not Implemented



set_listener
public int set_listener(DomainParticipantListener a_listener, int mask)(Code)

Parameters:
  a_listener -
Parameters:
  mask -



set_qos
public int set_qos(DomainParticipantQos qos)(Code)

Parameters:
  qos -



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