I am working with ActiveMQ(beginner). I want to put gRPC calls as a message 
on ActiveMQ. As soon as consumer picks a message , the gRPC in the message 
should execute.

gRPC calls take parameters , so I want to understand how to send these 
parameters in the message body along with the method name/identifier , or 
if there is any another way of achieving this which is followed already?

Example :

```
someResponse response = someStub.rpcMethodName(parameter); // grpc call 
```

What I need is to store this statement in some format on activemq without 
calling the grpc now , then in the future when the consumer of activemq 
picks up the message containing this statement it should execute this gRPC 
call.

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"grpc.io" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/dda22bd6-3f96-4a7e-80b6-24a069744f29n%40googlegroups.com.

Reply via email to