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

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

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

InputStream.read_ulong_array介绍

暂无

代码示例

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

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

代码示例来源:origin: org.jppf/jppf-jmxremote_optional

@Override
public void read_ulong_array(final int[] value, final int offset, final int length) {
 in.read_ulong_array(value, offset, length);
}

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

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

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

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

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

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

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

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

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

public static CodeSetComponent
read(org.omg.CORBA.portable.InputStream in)
{
  CodeSetComponent _ob_v = new CodeSetComponent();
  _ob_v.native_code_set = CodeSetIdHelper.read(in);
  int len0 = in.read_ulong();
  _ob_v.conversion_code_sets = new int[len0];
  in.read_ulong_array(_ob_v.conversion_code_sets, 0, len0);
  return _ob_v;
}

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

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result6 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result6 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result6);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result6];
  _in.read_ulong_array(_result,0,_l_result6);
  return _result;
}

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

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result5 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result5 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result5);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result5];
  _in.read_ulong_array(_result,0,_l_result5);
  return _result;
}

代码示例来源:origin: JacORB/JacORB

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result1 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result1 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result1);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result1];
  _in.read_ulong_array(_result,0,_l_result1);
  return _result;
}

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

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result7 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result7 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result7);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result7];
  _in.read_ulong_array(_result,0,_l_result7);
  return _result;
}

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

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result0 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result0 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result0);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result0];
  _in.read_ulong_array(_result,0,_l_result0);
  return _result;
}

代码示例来源:origin: JacORB/JacORB

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result5 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result5 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result5);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result5];
  _in.read_ulong_array(_result,0,_l_result5);
  return _result;
}

代码示例来源:origin: JacORB/JacORB

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result36 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result36 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result36);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result36];
  _in.read_ulong_array(_result,0,_l_result36);
  return _result;
}

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

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result8 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result8 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result8);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result8];
  _in.read_ulong_array(_result,0,_l_result8);
  return _result;
}

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

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result1 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result1 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result1);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result1];
  _in.read_ulong_array(_result,0,_l_result1);
  return _result;
}

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

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result44 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result44 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result44);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result44];
  _in.read_ulong_array(_result,0,_l_result44);
  return _result;
}

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

public static int[] read (final org.omg.CORBA.portable.InputStream _in)
{
  int[] _result;
  int _l_result36 = _in.read_long();
  try
  {
     int x = _in.available();
     if ( x > 0 && _l_result36 > x )
      {
        throw new org.omg.CORBA.MARSHAL("Sequence length too large. Only " + x + " available and trying to assign " + _l_result36);
      }
  }
  catch (java.io.IOException e)
  {
  }
  _result = new int[_l_result36];
  _in.read_ulong_array(_result,0,_l_result36);
  return _result;
}

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

public static ServiceInformation
read(org.omg.CORBA.portable.InputStream in)
{
  ServiceInformation _ob_v = new ServiceInformation();
  int len0 = in.read_ulong();
  _ob_v.service_options = new int[len0];
  in.read_ulong_array(_ob_v.service_options, 0, len0);
  int len1 = in.read_ulong();
  _ob_v.service_details = new ServiceDetail[len1];
  for(int i1 = 0; i1 < len1; i1++)
    _ob_v.service_details[i1] = ServiceDetailHelper.read(in);
  return _ob_v;
}

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

public static org.omg.CORBA.ServiceInformation read(org.omg.CORBA.portable.InputStream in) {
  org.omg.CORBA.ServiceInformation that = new org.omg.CORBA.ServiceInformation();
  {
    int __length = in.read_long();
    that.service_options = new int[__length];
    in.read_ulong_array(that.service_options, 0, that.service_options.length);
  }
  {
    int __length = in.read_long();
    that.service_details = new org.omg.CORBA.ServiceDetail[__length];
    for (int __index = 0 ; __index < that.service_details.length ; __index += 1) {
      that.service_details[__index] = org.omg.CORBA.ServiceDetailHelper.read(in);
    }
  }
  return that;
}
public static org.omg.CORBA.ServiceInformation extract(org.omg.CORBA.Any a) {

相关文章

微信公众号

最新文章

更多