/** * This operation returns at most the requested number of bindings. * * @param how_many the maximum number of bindings tro return * <p> * @param bl the returned bindings */ public boolean next_n(int how_many, org.omg.CosNaming.BindingListHolder bl) { org.omg.CORBA.portable.InputStream $in = null; try { org.omg.CORBA.portable.OutputStream $out = _request("next_n", true); $out.write_ulong(how_many); $in = _invoke($out); boolean $result = $in.read_boolean(); bl.value = org.omg.CosNaming.BindingListHelper.read($in); return $result; } catch (org.omg.CORBA.portable.ApplicationException $ex) { $in = $ex.getInputStream(); String _id = $ex.getId(); throw new org.omg.CORBA.MARSHAL(_id); } catch (org.omg.CORBA.portable.RemarshalException $rm) { return next_n(how_many, bl); } finally { _releaseReply($in); } } // next_n
public void _read(org.omg.CORBA.portable.InputStream i) { value = org.omg.CosNaming.BindingListHelper.read(i); }