From 012fc00ada6504b75fff5da2cc5bde53344236ab Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Wed, 22 Feb 2017 15:18:34 +0100 Subject: Address comments. --- doc/internationalization.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'doc/internationalization.md') diff --git a/doc/internationalization.md b/doc/internationalization.md index a39a5eef89..b82785207b 100644 --- a/doc/internationalization.md +++ b/doc/internationalization.md @@ -10,8 +10,9 @@ While some API elements need to be able to represent non-english content, some a for simplicity & performance reasons. ### Method name (in RPC Invocation) -Method names are ASCII-only. Most gRPC services will use protobuf which only allows ASCII based method names anyway. -Also, handling method names is a very hot code path. +Method names are ASCII-only and may only contain characters allowed by HTTP/2 text header values. That should not +be very limiting as most gRPC services will use protobuf which only allows method names from an even more restricted ASCII subset. +Also, handling method names is a very hot code path so any additional encoding/decoding step is to be avoided. Recommended representation in language-specific APIs: string type. @@ -39,6 +40,6 @@ Allowed values are defined by HTTP/2 standard (metadata values are represented a Recommended representation in language-specific APIs: string. -### Channel name +### Channel target (in channel creation) TBD -- cgit v1.2.3