本文整理了Java中org.omg.CORBA.portable.OutputStream.write_octet()
方法的一些代码示例,展示了OutputStream.write_octet()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。OutputStream.write_octet()
方法的具体详情如下:
包路径:org.omg.CORBA.portable.OutputStream
类名称:OutputStream
方法名:write_octet
暂无
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void
write(org.omg.CORBA.portable.OutputStream out, Version val)
{
out.write_octet(val.major);
out.write_octet(val.minor);
}
}
代码示例来源:origin: org.mobicents.resources/parlay-provider-api
public static void write (final org.omg.CORBA.portable.OutputStream _out, byte _s)
{
_out.write_octet(_s);
}
}
代码示例来源:origin: org.jacorb/jacorb
/**
* Operation write_octet
*/
public void write_octet( byte value )
{
delegate.write_octet( value );
}
代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb
public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.corba.se.spi.GIOP.Version value)
{
ostream.write_octet (value.major);
ostream.write_octet (value.minor);
}
代码示例来源:origin: org.jacorb/jacorb-omgapi
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.GIOP.Version s)
{
out.write_octet(s.major);
out.write_octet(s.minor);
}
}
代码示例来源:origin: org.apache.yoko/yoko-spec-corba
public static void
write(org.omg.CORBA.portable.OutputStream out, Version val)
{
out.write_octet(val.major);
out.write_octet(val.minor);
}
}
代码示例来源:origin: apache/cxf
public void writeOctet(Byte b) throws CorbaBindingException {
if (b == null) {
stream.write_octet((byte)0);
} else {
stream.write_octet(b.byteValue());
}
}
代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb
public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.IOP.Encoding value)
{
ostream.write_short (value.format);
ostream.write_octet (value.major_version);
ostream.write_octet (value.minor_version);
}
代码示例来源:origin: org.jacorb/jacorb-omgapi
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.IOP.Encoding s)
{
out.write_short(s.format);
out.write_octet(s.major_version);
out.write_octet(s.minor_version);
}
}
代码示例来源:origin: org.mobicents.resources/parlay-provider-api
public static void write (final org.omg.CORBA.portable.OutputStream _out, byte[] _s)
{
_out.write_long(_s.length);
for (int i=0; i<_s.length;i++)
{
_out.write_octet(_s[i]);
}
}
}
代码示例来源:origin: org.jacorb/jacorb-omgapi
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.GIOP.MessageHeader_1_1 s)
{
org.omg.GIOP.MagicnHelper.write(out,s.magic);
org.omg.GIOP.VersionHelper.write(out,s.GIOP_version);
out.write_octet(s.flags);
out.write_octet(s.message_type);
out.write_ulong(s.message_size);
}
}
代码示例来源:origin: org.apache.yoko/yoko-core
public static void
write(org.omg.CORBA.portable.OutputStream out, ProfileInfo val)
{
ObjectKeyHelper.write(out, val.key);
out.write_octet(val.major);
out.write_octet(val.minor);
ProfileIdHelper.write(out, val.id);
out.write_ulong(val.index);
TaggedComponentSeqHelper.write(out, val.components);
}
}
代码示例来源:origin: jboss/jboss-javaee-specs
public void write(org.omg.CORBA.portable.OutputStream ostream)
{
ostream.write_long(this.magic);
nullCheck(this.GIOP_version);
this.GIOP_version.write(ostream);
ostream.write_octet(this.flags);
ostream.write_octet(this.message_type);
ostream.write_ulong(this.message_size);
}
} // class Message_1_1
代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb
public void write(org.omg.CORBA.portable.OutputStream ostream) {
ostream.write_long(this.magic);
nullCheck(this.GIOP_version);
this.GIOP_version.write(ostream);
ostream.write_octet(this.flags);
ostream.write_octet(this.message_type);
ostream.write_ulong(this.message_size);
}
} // class Message_1_1
代码示例来源:origin: org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec
public void write(org.omg.CORBA.portable.OutputStream ostream)
{
ostream.write_long(this.magic);
nullCheck(this.GIOP_version);
this.GIOP_version.write(ostream);
ostream.write_octet(this.flags);
ostream.write_octet(this.message_type);
ostream.write_ulong(this.message_size);
}
} // class Message_1_1
代码示例来源:origin: JacORB/JacORB
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.GIOP.MessageHeader_1_0 s)
{
org.omg.GIOP.MagicnHelper.write(out,s.magic);
org.omg.GIOP.VersionHelper.write(out,s.GIOP_version);
out.write_boolean(s.byte_order);
out.write_octet(s.message_type);
out.write_ulong(s.message_size);
}
}
代码示例来源:origin: org.jacorb/jacorb-omgapi
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.GIOP.MessageHeader_1_0 s)
{
org.omg.GIOP.MagicnHelper.write(out,s.magic);
org.omg.GIOP.VersionHelper.write(out,s.GIOP_version);
out.write_boolean(s.byte_order);
out.write_octet(s.message_type);
out.write_ulong(s.message_size);
}
}
代码示例来源:origin: org.jacorb/jacorb-omgapi
public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.GIOP.RequestHeader_1_2 s)
{
out.write_ulong(s.request_id);
out.write_octet(s.response_flags);
org.omg.GIOP.RequestReservedHelper.write(out,s.reserved);
org.omg.GIOP.TargetAddressHelper.write(out,s.target);
java.lang.String tmpResult2 = s.operation;
out.write_string( tmpResult2 );
org.omg.IOP.ServiceContextListHelper.write(out,s.service_context);
}
}
代码示例来源:origin: jboss/jboss-javaee-specs
public void write(org.omg.CORBA.portable.OutputStream ostream)
{
ostream.write_long(this.magic);
nullCheck(this.GIOP_version);
this.GIOP_version.write(ostream);
ostream.write_boolean(this.byte_order);
ostream.write_octet(this.message_type);
ostream.write_ulong(this.message_size);
}
代码示例来源:origin: org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec
public void write(org.omg.CORBA.portable.OutputStream ostream)
{
ostream.write_long(this.magic);
nullCheck(this.GIOP_version);
this.GIOP_version.write(ostream);
ostream.write_boolean(this.byte_order);
ostream.write_octet(this.message_type);
ostream.write_ulong(this.message_size);
}
内容来源于网络,如有侵权,请联系作者删除!