mirror of
https://github.com/BotChain-Robots/flatbuffers.git
synced 2026-07-08 17:47:22 +02:00
Cleanup for release
This commit is contained in:
19
Messaging/MPIMessage.fbs
Normal file
19
Messaging/MPIMessage.fbs
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace Messaging;
|
||||
|
||||
enum MessageType : byte {
|
||||
BROADCAST = 0,
|
||||
PTP = 1,
|
||||
}
|
||||
|
||||
table MPIMessage {
|
||||
type: MessageType;
|
||||
sender: uint8;
|
||||
destination: uint8;
|
||||
sequence_number: uint16;
|
||||
is_durable: bool;
|
||||
length: uint16;
|
||||
tag: uint8;
|
||||
payload: [ubyte];
|
||||
}
|
||||
|
||||
root_type MPIMessage;
|
||||
Reference in New Issue
Block a user