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
Hey there,
I am a big fan of your benchmark tests, I went to take a look to see if you happened to add this one in the mix but didn't see it. Did you ever get around to running your usual tests against this as well? I am interested to see how it stacks up against the usuals.
Thanks!
-MH
The text was updated successfully, but these errors were encountered:
Greetings. Asynchronous simulation within a single process is not possible at the moment because of this. The wrapper itself also has some places for optimizations using the latest C# features such as Span<T>, but I'm waiting until the first stable release will become available to avoid rewriting the code.
I've added support for direct access to native memory blocks of network messages using Span<T> in order to avoid marshaling, but this requires C# 7.2 and unsafe blocks.
To enable this functionality follow these steps:
Define VALVESOCKETS_SPAN symbol.
Define your message callback and use the appropriate function to receive messages.
If you are using the current more complex approach, you will need to refactor your code a bit.
Hey there,
I am a big fan of your benchmark tests, I went to take a look to see if you happened to add this one in the mix but didn't see it. Did you ever get around to running your usual tests against this as well? I am interested to see how it stacks up against the usuals.
Thanks!
-MH
The text was updated successfully, but these errors were encountered: