-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Open
Description
In RPCImpl callback I can access requestData. That is UInt8Array.
I want to write the request message to Any field of generic Request object
message RpcRequest {
google.protobuf.Any data = 2;
int32 resultId = 3;
}
To assign data field (typed as Any) I need type_url since Any declared this way:
```
interface IAny {
/** Any type_url */
type_url?: (string|null);
/** Any value */
value?: (Uint8Array|null);
}
Can you add type_url to RPCImpl callback?
Metadata
Metadata
Assignees
Labels
No labels