Je dois composer un message protobuf qui doit comporter 1 variable entière et un tableau d'entiers.
package protobuf;
message myProto {
optional uint32 message_id =1;
optional int update = 2;
//here I have to add a array of integers
//can I write like optional int[] array =3;
//or should I use optional repeated array;
//where array is another message with int variable
}
Mon approche est-elle correcte ? Veuillez m'aider
Merci