Contents

initWithEntries

Initializes an IODataQueue instance with the specified number of entries of the given size.

Declaration

virtual Boolean initWithEntries(
 UInt32numEntries,
 UInt32entrySize);

Parameters

  • numEntries:

    Number of entries to allocate space for.

  • entrySize:

    Size of each entry.

Return Value

Reeturns true on success and false on failure.

Overview

This method will initialize an IODataQueue instance with enough capacity for numEntries of entrySize. It does account for the IODataQueueEntry overhead for each entry. Note that the numEntries and entrySize are simply used to determine the data region size. They do not actually restrict the size of number of entries that can be added to the queue.

This method allocates a new IODataQueue instance and then calls initWithEntries() with the given numEntries and entrySize parameters.

See Also

Miscellaneous