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


Java ORBUtility.getMaxStreamFormatVersion方法代码示例

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


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

示例1: getStreamFormatVersionForThisRequest

import com.sun.corba.se.impl.orbutil.ORBUtility; //导入方法依赖的package包/类
private byte getStreamFormatVersionForThisRequest(IOR ior,
                                                  GIOPVersion giopVersion)
{

    byte localMaxVersion
        = ORBUtility.getMaxStreamFormatVersion();

    IOR effectiveTargetIOR =
        ((CorbaContactInfo)this.contactInfo).getEffectiveTargetIOR();
    IIOPProfileTemplate temp =
        (IIOPProfileTemplate)effectiveTargetIOR.getProfile().getTaggedProfileTemplate();
    Iterator iter = temp.iteratorById(TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.value);
    if (!iter.hasNext()) {
        // Didn't have the max stream format version tagged
        // component.
        if (giopVersion.lessThan(GIOPVersion.V1_3))
            return ORBConstants.STREAM_FORMAT_VERSION_1;
        else
            return ORBConstants.STREAM_FORMAT_VERSION_2;
    }

    byte remoteMaxVersion
        = ((MaxStreamFormatVersionComponent)iter.next()).getMaxStreamFormatVersion();

    return (byte)Math.min(localMaxVersion, remoteMaxVersion);
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:27,代码来源:CorbaMessageMediatorImpl.java

示例2: getStreamFormatVersionForReply

import com.sun.corba.se.impl.orbutil.ORBUtility; //导入方法依赖的package包/类
/**
 * If the RMI-IIOP maximum stream format version service context
 * is present, it indicates the maximum stream format version we
 * could use for the reply.  If it isn't present, the default is
 * 2 for GIOP 1.3 or greater, 1 for lower.
 *
 * This is only sent on requests.  Clients can find out the
 * server's maximum by looking for a tagged component in the IOR.
 */
public byte getStreamFormatVersionForReply() {

    // NOTE: The request service contexts may indicate the max.
    ServiceContexts svc = getRequestServiceContexts();

    MaxStreamFormatVersionServiceContext msfvsc
        = (MaxStreamFormatVersionServiceContext)svc.get(
            MaxStreamFormatVersionServiceContext.SERVICE_CONTEXT_ID);

    if (msfvsc != null) {
        byte localMaxVersion = ORBUtility.getMaxStreamFormatVersion();
        byte remoteMaxVersion = msfvsc.getMaximumStreamFormatVersion();

        return (byte)Math.min(localMaxVersion, remoteMaxVersion);
    } else {
        // Defaults to 1 for GIOP 1.2 or less, 2 for
        // GIOP 1.3 or higher.
        if (getGIOPVersion().lessThan(GIOPVersion.V1_3))
            return ORBConstants.STREAM_FORMAT_VERSION_1;
        else
            return ORBConstants.STREAM_FORMAT_VERSION_2;
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:33,代码来源:CorbaMessageMediatorImpl.java

示例3: MaxStreamFormatVersionServiceContext

import com.sun.corba.se.impl.orbutil.ORBUtility; //导入方法依赖的package包/类
public MaxStreamFormatVersionServiceContext() {
    maxStreamFormatVersion = ORBUtility.getMaxStreamFormatVersion();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:4,代码来源:MaxStreamFormatVersionServiceContext.java

示例4: MaxStreamFormatVersionComponentImpl

import com.sun.corba.se.impl.orbutil.ORBUtility; //导入方法依赖的package包/类
public MaxStreamFormatVersionComponentImpl()
{
    version = ORBUtility.getMaxStreamFormatVersion();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:MaxStreamFormatVersionComponentImpl.java


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