Hi Marc,
Thanks for you reply. Here, I'm trying to create a user defined message given follow.
Class TestMessage{
String attribute1;
Map<String, String> attribute2;
long attribute3;
int attribute4;
Long attribute5;
Integer attribute6;
Set<Long> attribute7;
}
I want to define above message format in .proto file. Hence, I've created following message.
message TestMessage{
string attribute1 = 1;
map<string,string> attribute2 = 2;
int64 attribute3 = 3;
}
But, I'm not sure how do I define attribute5, attribute6 and attribute7 in proto file. Please help me on this.