corbacontactinfolistfactory.java

来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 33 行

JAVA
33
字号
/* * @(#)CorbaContactInfoListFactory.java	1.8 03/12/19 *  * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.transport ;import com.sun.corba.se.spi.transport.CorbaContactInfoList ;import com.sun.corba.se.spi.ior.IOR ;import com.sun.corba.se.spi.orb.ORB;/** Interface used to create a ContactInfoList from an IOR, as required * for supporting CORBA semantics using the DCS framework.  This is a  * natural correspondence since an IOR contains the information for * contacting one or more communication endpoints that can be used to * invoke a method on an object, along with the necessary information * on particular transports, encodings, and protocols to use. * Note that the actual implementation may support more than one * IOR in the case of GIOP with Location Forward messages.  */public interface CorbaContactInfoListFactory {    /**     * This will be called after the no-arg constructor before     * create is called.     */    public void setORB(ORB orb);    public CorbaContactInfoList create( IOR ior ) ;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?