Replies: 1 comment
-
No, not today. Please provide any feedback in #339 ! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm looking for a way to NOT have Flatsharp allocate my message objects during deserialize.
So, instead of this API:
MsgClass msg = FlatBufferSerializer.Default.Parse(buffer);
Would like to do my own allocation (pooling of objects), which would mean something like:
FlatBufferSerializer.Default.Parse(buffer, ref MsgClass msg);
Is there a way to do this already? I couldn't find it.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions