1 28 29 30 package org.objectweb.corba.runtime; 31 32 38 public class SingleORBWorker 39 implements MainThread 40 { 41 public 42 SingleORBWorker() 43 { 44 } 45 46 50 final public void 51 stopORB(org.omg.CORBA.ORB orb) 52 { 53 } 56 57 final public void 58 runORB(org.omg.CORBA.ORB orb) 59 { 60 new ORBWorker(orb).start(); 61 } 62 63 final public void 64 startThread() 65 { 66 } 68 } 69 70 class ORBWorker 74 extends java.lang.Thread  75 { 76 private org.omg.CORBA.ORB _orb; 78 79 public 80 ORBWorker(org.omg.CORBA.ORB orb) 81 { 82 _orb = orb; 84 } 85 86 90 final public void 91 run() 92 { 93 _orb.run(); 94 } 95 } 96 | Popular Tags |