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


Java Message.JAVA_ENC_VERSION属性代码示例

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


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

示例1: getEncodingVersion

/**
 * @return the Java serialization encoding version.
 */
public static byte getEncodingVersion(ORB orb, IOR ior) {

    // Is Java serialization enabled?
    // Check the JavaSerializationComponent (tagged component)
    // in the IIOPProfile. If present, the peer ORB's GIOP is capable
    // of using Java serialization instead of CDR serialization.
    // In such a case, use Java serialization, iff the java serialization
    // versions match.

    if (orb.getORBData().isJavaSerializationEnabled()) {
        IIOPProfile prof = ior.getProfile();
        IIOPProfileTemplate profTemp =
            (IIOPProfileTemplate) prof.getTaggedProfileTemplate();
        java.util.Iterator iter = profTemp.iteratorById(
                              ORBConstants.TAG_JAVA_SERIALIZATION_ID);
        if (iter.hasNext()) {
            JavaSerializationComponent jc =
                (JavaSerializationComponent) iter.next();
            byte jcVersion = jc.javaSerializationVersion();
            if (jcVersion >= Message.JAVA_ENC_VERSION) {
                return Message.JAVA_ENC_VERSION;
            } else if (jcVersion > Message.CDR_ENC_VERSION) {
                return jc.javaSerializationVersion();
            } else {
                // throw error?
                // Since encodingVersion is <= 0 (CDR_ENC_VERSION).
            }
        }
    }
    return Message.CDR_ENC_VERSION; // default
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:34,代码来源:ORBUtility.java

示例2: singleton

public static JavaSerializationComponent singleton() {
    if (singleton == null) {
        synchronized (JavaSerializationComponent.class) {
            singleton =
                new JavaSerializationComponent(Message.JAVA_ENC_VERSION);
        }
    }
    return singleton;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:JavaSerializationComponent.java


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