mirror of
https://github.com/BotChain-Robots/flatbuffers.git
synced 2026-07-08 09:37:21 +02:00
20 lines
282 B
Plaintext
20 lines
282 B
Plaintext
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;
|