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
In the example you are only recording the received bytes to show throughput. But how do you utilize the received data before the next datagram comes in and changes the GC array which changes the Memory span? The memory "bufferMem" is linked to the GC array and is ever-changing. You would have to copy the received data to a different type to preserve the received data so it can be used later. How did you tackle this with no allocation and no copying?
Thanks for your time and I'm looking forward to your reply.
The text was updated successfully, but these errors were encountered:
Hello and thanks for the reply. But if you wanted to put the received data into a queue to be consumed later, then this is not the desired model. Any idea on how to use the data later and still not have allocations.
In the example you are only recording the received bytes to show throughput. But how do you utilize the received data before the next datagram comes in and changes the GC array which changes the Memory span? The memory "bufferMem" is linked to the GC array and is ever-changing. You would have to copy the received data to a different type to preserve the received data so it can be used later. How did you tackle this with no allocation and no copying?
Thanks for your time and I'm looking forward to your reply.
The text was updated successfully, but these errors were encountered: