Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Grpc Service Properties"

Line 9: Line 9:
 
|-
 
|-
 
| '''ecf.grpc.uriContext'''  
 
| '''ecf.grpc.uriContext'''  
| The port to use for io.grpc.ServerBuilder.forPort(<port>).  For example, the '50001' in 'http://localhost:50001'.  Note that the uriContext value should be a well-formed URI (e.g. http://localhost:50001), but that currently only the port value is parsed and used for the call to io.grpc.ServerBuilder.forPort(<port>).
+
| The port to use for io.grpc.ServerBuilder.forPort(<port>).  For example, the '50051' in 'http://localhost:50051'.  Note that the uriContext value should be a well-formed URI (e.g. 'http://localhost:50051'), but that currently only the port value is parsed and used for the call to io.grpc.ServerBuilder.forPort(<port>).
| Integer&nbsp;&nbsp;
+
| String&nbsp;&nbsp;
| '''http://localhost:50001'''
+
| '''http://localhost:50051'''
 
|}
 
|}

Revision as of 19:00, 5 May 2020

Service Properties

Property Name Description Type Default Value
ecf.grpc.uriContext   The port to use for io.grpc.ServerBuilder.forPort(<port>). For example, the '50051' in 'http://localhost:50051'. Note that the uriContext value should be a well-formed URI (e.g. 'http://localhost:50051'), but that currently only the port value is parsed and used for the call to io.grpc.ServerBuilder.forPort(<port>). String   http://localhost:50051

Back to the top