org.omg.CORBA.portable.InputStream.read_octet_array()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(5.9k)|赞(0)|评价(0)|浏览(109)

本文整理了Java中org.omg.CORBA.portable.InputStream.read_octet_array()方法的一些代码示例,展示了InputStream.read_octet_array()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。InputStream.read_octet_array()方法的具体详情如下:
包路径:org.omg.CORBA.portable.InputStream
类名称:InputStream
方法名:read_octet_array

InputStream.read_octet_array介绍

暂无

代码示例

代码示例来源:origin: org.jacorb/jacorb

/**
 * Operation read_octet_array
 */
public void read_octet_array( org.omg.CORBA.OctetSeqHolder seq, int offset, int length )
{
  delegate.read_octet_array( seq.value, offset, length );
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

@Override
public java.io.Serializable read_value(org.omg.CORBA.portable.InputStream istream) {
  byte[] tmp;
  int _len0 = istream.read_long();
  tmp = new byte[_len0];
  istream.read_octet_array(tmp, 0, _len0);
  return tmp;
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public static byte[] read (org.omg.CORBA.portable.InputStream istream)
{
 byte value[] = null;
 int _len0 = istream.read_long ();
 value = new byte[_len0];
 istream.read_octet_array (value, 0, _len0);
 return value;
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public static byte[] read (org.omg.CORBA.portable.InputStream istream)
{
 byte value[] = null;
 int _len0 = istream.read_long ();
 value = new byte[_len0];
 istream.read_octet_array (value, 0, _len0);
 return value;
}

代码示例来源:origin: org.apache.yoko/yoko-spec-corba

public static byte[] read (org.omg.CORBA.portable.InputStream istream)
{
 byte value[] = null;
 int _len0 = istream.read_long ();
 value = new byte[_len0];
 istream.read_octet_array (value, 0, _len0);
 return value;
}

代码示例来源:origin: org.apache.yoko/yoko-spec-corba

public static byte[] read (org.omg.CORBA.portable.InputStream istream)
{
 byte value[] = null;
 int _len0 = istream.read_long ();
 value = new byte[_len0];
 istream.read_octet_array (value, 0, _len0);
 return value;
}

代码示例来源:origin: org.glassfish.corba/glassfish-corba-csiv2-idl

public static byte[] read (org.omg.CORBA.portable.InputStream istream)
{
 byte value[] = null;
 int _len0 = istream.read_long ();
 value = new byte[_len0];
 istream.read_octet_array (value, 0, _len0);
 return value;
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public static byte[] read (org.omg.CORBA.portable.InputStream istream)
{
 byte value[] = null;
 int _len0 = istream.read_long ();
 value = new byte[_len0];
 istream.read_octet_array (value, 0, _len0);
 return value;
}

代码示例来源:origin: org.apache.yoko/yoko-spec-corba

public static byte[]
read(org.omg.CORBA.portable.InputStream in)
{
  byte[] _ob_v;
  int len0 = in.read_ulong();
  _ob_v = new byte[len0];
  in.read_octet_array(_ob_v, 0, len0);
  return _ob_v;
}

代码示例来源:origin: org.apache.yoko/yoko-spec-corba

public static byte[] read (org.omg.CORBA.portable.InputStream istream)
{
 byte value[] = null;
 int _len0 = istream.read_long ();
 value = new byte[_len0];
 istream.read_octet_array (value, 0, _len0);
 return value;
}

代码示例来源:origin: org.apache.yoko/yoko-spec-corba

public static byte[] read (org.omg.CORBA.portable.InputStream istream)
{
 byte value[] = null;
 int _len0 = istream.read_long ();
 value = new byte[_len0];
 istream.read_octet_array (value, 0, _len0);
 return value;
}

代码示例来源:origin: org.apache.yoko/yoko-spec-corba

public static byte[]
read(org.omg.CORBA.portable.InputStream in)
{
  byte[] _ob_v;
  int len0 = in.read_ulong();
  _ob_v = new byte[len0];
  in.read_octet_array(_ob_v, 0, len0);
  return _ob_v;
}

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

public java.io.Serializable read_value(org.omg.CORBA.portable.InputStream istream) {
  byte[] tmp;
  int _len0 = istream.read_long();
  tmp = new byte[_len0];
  istream.read_octet_array(tmp, 0, _len0);
  return tmp;
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

public java.io.Serializable read_value(org.omg.CORBA.portable.InputStream istream) {
  byte[] tmp;
  int _len0 = istream.read_long();
  tmp = new byte[_len0];
  istream.read_octet_array(tmp, 0, _len0);
  return tmp;
}

代码示例来源:origin: org.glassfish.corba/glassfish-corba-csiv2-idl

public static byte[] read (org.omg.CORBA.portable.InputStream istream)
{
 byte value[] = null;
 int _len0 = istream.read_long ();
 value = new byte[_len0];
 istream.read_octet_array (value, 0, _len0);
 return value;
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public static com.sun.corba.se.spi.GIOP.LocateRequestHeader_1_0 read (org.omg.CORBA.portable.InputStream istream)
{
 com.sun.corba.se.spi.GIOP.LocateRequestHeader_1_0 value = new com.sun.corba.se.spi.GIOP.LocateRequestHeader_1_0 ();
 value.request_id = istream.read_ulong ();
 int _len0 = istream.read_long ();
 value.object_key = new byte[_len0];
 istream.read_octet_array (value.object_key, 0, _len0);
 return value;
}

代码示例来源:origin: org.apache.yoko/yoko-spec-corba

public static ServiceContext
read(org.omg.CORBA.portable.InputStream in)
{
  ServiceContext _ob_v = new ServiceContext();
  _ob_v.context_id = ServiceIdHelper.read(in);
  int len0 = in.read_ulong();
  _ob_v.context_data = new byte[len0];
  in.read_octet_array(_ob_v.context_data, 0, len0);
  return _ob_v;
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public void read(org.omg.CORBA.portable.InputStream istream) {
  super.read(istream);
  this.request_id = istream.read_ulong();
  int _len1 = istream.read_long();
  this.object_key = new byte[_len1];
  istream.read_octet_array(this.object_key, 0, _len1);
}

代码示例来源:origin: org.jboss.openjdk-orb/openjdk-orb

public void read(org.omg.CORBA.portable.InputStream istream) {
  super.read(istream);
  this.service_contexts
    = new ServiceContexts((org.omg.CORBA_2_3.portable.InputStream) istream);
  this.request_id = istream.read_ulong();
  this.response_expected = istream.read_boolean();
  int _len0 = istream.read_long();
  this.object_key = new byte[_len0];
  istream.read_octet_array(this.object_key, 0, _len0);
  this.operation = istream.read_string();
  this.requesting_principal = istream.read_Principal();
}

代码示例来源:origin: org.jboss.spec.javax.rmi/jboss-rmi-api_1.0_spec

public void read(org.omg.CORBA.portable.InputStream istream)
{
  super.read(istream);
  this.service_contexts = new ServiceContexts((org.omg.CORBA_2_3.portable.InputStream) istream);
  this.request_id = istream.read_ulong();
  this.response_expected = istream.read_boolean();
  int _len0 = istream.read_long();
  this.object_key = new byte[_len0];
  istream.read_octet_array(this.object_key, 0, _len0);
  this.operation = istream.read_string();
  this.requesting_principal = istream.read_Principal();
}

相关文章

微信公众号

最新文章

更多