You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AsyncQueueSocket allocates Transaction data each time send or receive function is called and deallocates the same data each time the transaction is completed. Which leads to frequent allocation and deallocation of memory blocks - hence adding more latency in each frame. This needs to be fixed by reusing the previously allocated data.
The text was updated successfully, but these errors were encountered:
AsyncQueueSocket
allocates Transaction data each timesend
orreceive
function is called and deallocates the same data each time the transaction is completed. Which leads to frequent allocation and deallocation of memory blocks - hence adding more latency in each frame. This needs to be fixed by reusing the previously allocated data.The text was updated successfully, but these errors were encountered: