I want to send an array of bytes with 6 fields (char, boolean[], char, byte[], int, and byte). Each field has a defined size, therefore my array of bytes must have a size limit as big as the sum of the 5 fields.
My question is this: The number serialize uid increases the final size of my bytes array to send? (if the answer is yes I must find another way to convert array of bytes)
Thank you.