Bug 4760 - ByteBuffer and subclasses should have efficient bulk put() methods
Summary: ByteBuffer and subclasses should have efficient bulk put() methods
Status: RESOLVED FIXED
Alias: None
Product: frysk
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
: P2 normal
Target Milestone: ---
Assignee: Unassigned
URL:
Keywords:
Depends on:
Blocks: 4827
  Show dependency treegraph
 
Reported: 2007-07-10 09:07 UTC by Mark Wielaard
Modified: 2007-08-02 11:26 UTC (History)
0 users

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Mark Wielaard 2007-07-10 09:07:13 UTC
ByteBuffer provide a bulk get() method to read in a whole byte[] at once. An
equivalent bulk put() method and efficient implementations of it for the
ByteBuffer subclasses used in frysk would be beneficial for performance.
Comment 1 Mark Wielaard 2007-08-02 11:26:13 UTC
frysk-sys/inua/ChangeLog
2007-08-02  Mark Wielaard  <mwielaard@redhat.com>

    * ByteBuffer.java (put(byte[],int,int)): New
    bulk put method.
    (put(byte[])): likewise.