Closed huajuhong closed 6 months ago
Hello everyone, I would like to define a byte array in IDL. My definition is as follows sequence<octet> bytes; But the compilation did not pass. Has anyone encountered it before? Please help me take a look. Thank you!
sequence<octet> bytes;
I have found a sulotion module HelloWorld{ typedef sequence<octet> ByteSequence; @topic struct Message { ByteSequence Data; }; };
module HelloWorld{ typedef sequence<octet> ByteSequence; @topic struct Message { ByteSequence Data; }; };
Hello everyone, I would like to define a byte array in IDL. My definition is as follows
sequence<octet> bytes;
But the compilation did not pass. Has anyone encountered it before? Please help me take a look. Thank you!