Source Code Cross Referenced for PushConsumerDemo.java in  » Collaboration » JacORB » demo » events » 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 » demo.events 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package demo.events;
02:
03:        /**
04:         * @authors Joerg v. Frantzius, Rainer Lischetzki, Gerald Brose 1997
05:         *
06:         * A simple demo for using the event channel as a push consumer
07:         * of events. This consumer unregisters and quits after receiving
08:         * 5 events.
09:         *
10:         */
11:
12:        import org.omg.CosEventChannelAdmin.*;
13:        import org.omg.CosEventComm.*;
14:        import org.omg.CosNaming.*;
15:
16:        public class PushConsumerDemo implements  PushConsumerOperations {
17:            private short count = 0;
18:            private ProxyPushSupplier myPps = null;
19:            private int limit = 25;
20:
21:            static org.omg.CORBA.ORB orb = null;
22:
23:            public PushConsumerDemo(ProxyPushSupplier _pps) {
24:                myPps = _pps;
25:            }
26:
27:            public void disconnect_push_consumer() {
28:                System.out.println("Consumer disconnected.");
29:            }
30:
31:            static public void main(String[] args) {
32:                EventChannel ecs = null;
33:                ConsumerAdmin ca = null;
34:                PushConsumer pushConsumer = null;
35:                ProxyPushSupplier pps = null;
36:
37:                try {
38:                    orb = org.omg.CORBA.ORB.init(args, null);
39:                    NamingContextExt nc = NamingContextExtHelper.narrow(orb
40:                            .resolve_initial_references("NameService"));
41:
42:                    ecs = EventChannelHelper.narrow(nc.resolve(nc
43:                            .to_name("eventchannel.example")));
44:                } catch (Exception e) {
45:                    e.printStackTrace();
46:                }
47:
48:                ca = ecs.for_consumers();
49:                pps = ca.obtain_push_supplier();
50:
51:                try {
52:                    org.omg.PortableServer.POA poa = org.omg.PortableServer.POAHelper
53:                            .narrow(orb.resolve_initial_references("RootPOA"));
54:
55:                    poa.the_POAManager().activate();
56:
57:                    PushConsumerPOATie pt = new PushConsumerPOATie(
58:                            new PushConsumerDemo(pps));
59:                    pt._this _object(orb);
60:                    pushConsumer = PushConsumerHelper.narrow(poa
61:                            .servant_to_reference(pt));
62:                    pps.connect_push_consumer(pushConsumer);
63:                    System.out.println("PushConsumerImpl registered.");
64:                    orb.run();
65:                } catch (Exception e) {
66:                    e.printStackTrace();
67:                }
68:                System.out.println("Quit.");
69:            }
70:
71:            public synchronized void push(org.omg.CORBA.Any data)
72:                    throws org.omg.CosEventComm.Disconnected {
73:                count++;
74:                System.out.println("event " + count + " : "
75:                        + data.extract_string());
76:                if (count >= limit) {
77:                    System.out.println("unregister");
78:                    myPps.disconnect_push_supplier();
79:                    // System.exit(0);
80:                    orb.shutdown(false);
81:                }
82:            }
83:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.