当前位置: 首页>>代码示例>>Java>>正文


Java EncapsOutputStream.create_input_stream方法代码示例

本文整理汇总了Java中com.sun.corba.se.impl.encoding.EncapsOutputStream.create_input_stream方法的典型用法代码示例。如果您正苦于以下问题:Java EncapsOutputStream.create_input_stream方法的具体用法?Java EncapsOutputStream.create_input_stream怎么用?Java EncapsOutputStream.create_input_stream使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.corba.se.impl.encoding.EncapsOutputStream的用法示例。


在下文中一共展示了EncapsOutputStream.create_input_stream方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getIOPComponent

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public org.omg.IOP.TaggedComponent getIOPComponent(
    org.omg.CORBA.ORB orb )
{
    EncapsOutputStream os =
        sun.corba.OutputStreamFactory.newEncapsOutputStream((ORB)orb);
    write( os ) ;
    InputStream is = (InputStream)(os.create_input_stream() ) ;
    return org.omg.IOP.TaggedComponentHelper.read( is ) ;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:TaggedComponentBase.java

示例2: getIOPProfile

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public org.omg.IOP.TaggedProfile getIOPProfile()
{
    EncapsOutputStream os =
        sun.corba.OutputStreamFactory.newEncapsOutputStream(orb);
    write( os ) ;
    InputStream is = (InputStream)(os.create_input_stream()) ;
    return org.omg.IOP.TaggedProfileHelper.read( is ) ;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:GenericTaggedProfile.java

示例3: create

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public TaggedComponent create( org.omg.CORBA.ORB orb,
    org.omg.IOP.TaggedComponent comp )
{
    EncapsOutputStream os =
        sun.corba.OutputStreamFactory.newEncapsOutputStream((ORB)orb);
    org.omg.IOP.TaggedComponentHelper.write( os, comp ) ;
    InputStream is = (InputStream)(os.create_input_stream() ) ;
    // Skip the component ID: we just wrote it out above
    is.read_ulong() ;

    return (TaggedComponent)create( comp.tag, is ) ;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:13,代码来源:TaggedComponentFactoryFinderImpl.java

示例4: getIOPIOR

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public org.omg.IOP.IOR getIOPIOR() {
    EncapsOutputStream os =
        sun.corba.OutputStreamFactory.newEncapsOutputStream(factory);
    write(os);
    InputStream is = (InputStream) (os.create_input_stream());
    return org.omg.IOP.IORHelper.read(is);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:IORImpl.java

示例5: getIOPProfile

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public org.omg.IOP.TaggedProfile getIOPProfile()
{
    EncapsOutputStream os =
        sun.corba.OutputStreamFactory.newEncapsOutputStream(orb);
    os.write_long( getId() ) ;
    write( os ) ;
    InputStream is = (InputStream)(os.create_input_stream()) ;
    return org.omg.IOP.TaggedProfileHelper.read( is ) ;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:IIOPProfileImpl.java

示例6: getIOPComponent

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public org.omg.IOP.TaggedComponent getIOPComponent(
    org.omg.CORBA.ORB orb )
{
    EncapsOutputStream os = new EncapsOutputStream( (ORB)orb ) ;
    write( os ) ;
    InputStream is = (InputStream)(os.create_input_stream() ) ;
    return org.omg.IOP.TaggedComponentHelper.read( is ) ;
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:9,代码来源:TaggedComponentBase.java

示例7: getIOPProfile

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public org.omg.IOP.TaggedProfile getIOPProfile()
{
    EncapsOutputStream os = new EncapsOutputStream( orb ) ;
    write( os ) ;
    InputStream is = (InputStream)(os.create_input_stream()) ;
    return org.omg.IOP.TaggedProfileHelper.read( is ) ;
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:8,代码来源:GenericTaggedProfile.java

示例8: create

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public TaggedComponent create( org.omg.CORBA.ORB orb,
    org.omg.IOP.TaggedComponent comp )
{
    EncapsOutputStream os = new EncapsOutputStream( (ORB)orb ) ;
    org.omg.IOP.TaggedComponentHelper.write( os, comp ) ;
    InputStream is = (InputStream)(os.create_input_stream() ) ;
    // Skip the component ID: we just wrote it out above
    is.read_ulong() ;

    return (TaggedComponent)create( comp.tag, is ) ;
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:12,代码来源:TaggedComponentFactoryFinderImpl.java

示例9: getIOPProfile

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public org.omg.IOP.TaggedProfile getIOPProfile()
{
    EncapsOutputStream os = new EncapsOutputStream( orb ) ;
    os.write_long( getId() ) ;
    write( os ) ;
    InputStream is = (InputStream)(os.create_input_stream()) ;
    return org.omg.IOP.TaggedProfileHelper.read( is ) ;
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:9,代码来源:IIOPProfileImpl.java

示例10: getServiceContext

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
/**
 * Utility method to look up a service context with the given id and
 * convert it to an IOP.ServiceContext.  Uses the given HashMap as
 * a cache.  If not found in cache, the result is inserted in the cache.
 */
protected org.omg.IOP.ServiceContext
    getServiceContext ( HashMap cachedServiceContexts,
                        ServiceContexts serviceContexts, int id )
{
    org.omg.IOP.ServiceContext result = null;
    Integer integerId = new Integer( id );

    // Search cache first:
    result = (org.omg.IOP.ServiceContext)
        cachedServiceContexts.get( integerId );

    // null could normally mean that either we cached the value null
    // or it's not in the cache.  However, there is no way for us to
    // cache the value null in the following code.
    if( result == null ) {
        // Not in cache.  Find it and put in cache.
        // Get the desired "core" service context.
        com.sun.corba.se.spi.servicecontext.ServiceContext context =
            serviceContexts.get( id );
        if (context == null)
            throw stdWrapper.invalidServiceContextId() ;

        // Convert the "core" service context to an
        // "IOP" ServiceContext by writing it to a
        // CDROutputStream and reading it back.
        EncapsOutputStream out =
            sun.corba.OutputStreamFactory.newEncapsOutputStream(myORB);

        context.write( out, GIOPVersion.V1_2 );
        InputStream inputStream = out.create_input_stream();
        result = ServiceContextHelper.read( inputStream );

        cachedServiceContexts.put( integerId, result );
    }

    // Good citizen: For increased efficiency, we assume that interceptors
    // will not modify the returned ServiceContext.  Otherwise, we would
    // have to make a deep copy.

    return result;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:47,代码来源:RequestInfoImpl.java

示例11: getServiceContext

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
/**
 * Utility method to look up a service context with the given id and
 * convert it to an IOP.ServiceContext.  Uses the given HashMap as
 * a cache.  If not found in cache, the result is inserted in the cache.
 */
protected org.omg.IOP.ServiceContext
    getServiceContext ( HashMap cachedServiceContexts,
                        ServiceContexts serviceContexts, int id )
{
    org.omg.IOP.ServiceContext result = null;
    Integer integerId = new Integer( id );

    // Search cache first:
    result = (org.omg.IOP.ServiceContext)
        cachedServiceContexts.get( integerId );

    // null could normally mean that either we cached the value null
    // or it's not in the cache.  However, there is no way for us to
    // cache the value null in the following code.
    if( result == null ) {
        // Not in cache.  Find it and put in cache.
        // Get the desired "core" service context.
        com.sun.corba.se.spi.servicecontext.ServiceContext context =
            serviceContexts.get( id );
        if (context == null)
            throw stdWrapper.invalidServiceContextId() ;

        // Convert the "core" service context to an
        // "IOP" ServiceContext by writing it to a
        // CDROutputStream and reading it back.
        EncapsOutputStream out = new EncapsOutputStream(myORB);

        context.write( out, GIOPVersion.V1_2 );
        InputStream inputStream = out.create_input_stream();
        result = ServiceContextHelper.read( inputStream );

        cachedServiceContexts.put( integerId, result );
    }

    // Good citizen: For increased efficiency, we assume that interceptors
    // will not modify the returned ServiceContext.  Otherwise, we would
    // have to make a deep copy.

    return result;
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:46,代码来源:RequestInfoImpl.java

示例12: getIOPIOR

import com.sun.corba.se.impl.encoding.EncapsOutputStream; //导入方法依赖的package包/类
public org.omg.IOP.IOR getIOPIOR() {
    EncapsOutputStream os = new EncapsOutputStream(factory);
    write(os);
    InputStream is = (InputStream) (os.create_input_stream());
    return org.omg.IOP.IORHelper.read(is);
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:7,代码来源:IORImpl.java


注:本文中的com.sun.corba.se.impl.encoding.EncapsOutputStream.create_input_stream方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。