mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 11:17:38 +02:00
more correct comments
This commit is contained in:
parent
c2f5d19ddb
commit
7fc75e5af0
1 changed files with 3 additions and 3 deletions
|
@ -140,16 +140,16 @@ public:
|
||||||
// This call is thread safe, can be called from anywhere to allocate a new ID
|
// This call is thread safe, can be called from anywhere to allocate a new ID
|
||||||
ProxyID allocateID();
|
ProxyID allocateID();
|
||||||
|
|
||||||
// Check that the ID is valid and allocated for this space, this a threadsafe call
|
// Check that the ID is valid and allocated for this collection, this a threadsafe call
|
||||||
bool isAllocatedID(const ProxyID& id) const;
|
bool isAllocatedID(const ProxyID& id) const;
|
||||||
|
|
||||||
// THis is the total number of allocated proxies, this a threadsafe call
|
// THis is the total number of allocated proxies, this a threadsafe call
|
||||||
Index getNumAllocatedProxies() const { return _IDAllocator.getNumAllocatedIndices(); }
|
Index getNumAllocatedProxies() const { return _IDAllocator.getNumAllocatedIndices(); }
|
||||||
|
|
||||||
// Enqueue transaction to the space
|
// Enqueue transaction to the collection
|
||||||
void enqueueTransaction(const Transaction& transaction);
|
void enqueueTransaction(const Transaction& transaction);
|
||||||
|
|
||||||
// Enqueue transaction to the space
|
// Enqueue transaction to the collection
|
||||||
void enqueueTransaction(Transaction&& transaction);
|
void enqueueTransaction(Transaction&& transaction);
|
||||||
|
|
||||||
// Enqueue end of frame transactions boundary
|
// Enqueue end of frame transactions boundary
|
||||||
|
|
Loading…
Reference in a new issue