SocketFactoryAcceptorImplpublic class SocketFactoryAcceptorImpl extends com.sun.corba.se.impl.transport.SocketOrChannelAcceptorImpl
Methods Summary |
---|
protected void | dprint(java.lang.String msg)
ORBUtility.dprint(toStringName(), msg);
| public boolean | initialize()
if (initialized) {
return false;
}
if (orb.transportDebugFlag) {
dprint("initialize: " + this);
}
try {
serverSocket = orb.getORBData()
.getLegacySocketFactory().createServerSocket(type, port);
internalInitialize();
} catch (Throwable t) {
throw wrapper.createListenerFailed( t, Integer.toString(port) ) ;
}
initialized = true;
return true;
| protected java.lang.String | toStringName()
return "SocketFactoryAcceptorImpl";
|
|