take a simple example:

message MyRequest
{
    required uint32 Request = 1;
}

message MyResponse
{
    required uint32 Response = 1;
}

service MyService
{
    rpc MyRpc(MyRequest) returns (MyResponse)
}


if I have string "MyService" and "MyRpc", and binary data for MyRequest and 
MyResponse,
how could I get known that the request is type "MyRequest" and the response 
is type "MyResponse" and then
construct objects of "MyRequest" & "MyResponse" to parse the binary data?

is it so called reflection?

-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/protobuf?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to