can i save flatbuffer bytes and reuse later? #8239
vbpatil449
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have queue that will cache message(items) and i want to save flatbuffer bytes for each message in this queue.
Later i want to read through all the messages in the queue and make a FlatBuffer bytes that will contain each message bytes..
Example:
I want to save each "Message" here in a Queue List and later time when i have say 100 items, i want to build PostRequest flatbuffer final bytes.
table Message {
items: [string];
}
table PostRequest {
/// messages in the batch
messages: [Message]
}
Is this possible? Any suggestions ?
thanks
Beta Was this translation helpful? Give feedback.
All reactions