Constructors
Synopses
Declared in <bdlcc_timequeue.h>
Create an empty time queue.
explicit
TimeQueue(bslma::Allocator* basicAllocator = 0);
Create an empty time queue (deprecated poolTimerMemory overload).
explicit
TimeQueue(
bool poolTimerMemory,
bslma::Allocator* basicAllocator = 0);
Same as the preceding overload, using the specified numIndexBits.
explicit
TimeQueue(
int numIndexBits,
bslma::Allocator* basicAllocator = 0);
Same as the preceding deprecated overload, with the specified numIndexBits.
TimeQueue(
int numIndexBits,
bool poolTimerMemory,
bslma::Allocator* basicAllocator = 0);
Parameters
Name |
Description |
basicAllocator |
allocator used to supply memory |
poolTimerMemory |
ignored; retained for compatibility |
numIndexBits |
number of index bits to configure |
Created with MrDocs