| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| DUBBO_VALUE = "dubbo" |
| |
| REFER_KEY = "refer" |
| EXPORT_KEY = "export" |
| |
| PROTOCOL_KEY = "protocol" |
| TRIPLE = "triple" |
| TRIPLE_SHORT = "tri" |
| |
| SIDE_KEY = "side" |
| SERVER_VALUE = "server" |
| CLIENT_VALUE = "client" |
| |
| METHOD_KEY = "method" |
| SERVICE_KEY = "service" |
| |
| SERVICE_HANDLER_KEY = "service-handler" |
| |
| GROUP_KEY = "group" |
| |
| LOCAL_HOST_KEY = "localhost" |
| LOCAL_HOST_VALUE = "127.0.0.1" |
| DEFAULT_PORT = 50051 |
| |
| SSL_ENABLED_KEY = "ssl-enabled" |
| |
| SERIALIZATION_KEY = "serialization" |
| SERIALIZER_KEY = "serializer" |
| DESERIALIZER_KEY = "deserializer" |
| |
| |
| COMPRESSION_KEY = "compression" |
| COMPRESSOR_KEY = "compressor" |
| DECOMPRESSOR_KEY = "decompressor" |
| |
| |
| TRANSPORTER_KEY = "transporter" |
| TRANSPORTER_DEFAULT_VALUE = "aio" |
| |
| TRUE_VALUE = "true" |
| FALSE_VALUE = "false" |
| |
| RPC_TYPE_KEY = "rpc-type" |
| |
| METHOD_DESCRIPTOR_KEY = "method-descriptor" |
| |
| LOADBALANCE_KEY = "loadbalance" |
| |
| PATH_SEPARATOR = "/" |
| PROTOCOL_SEPARATOR = "://" |
| ANY_VALUE = "*" |
| COMMA_SEPARATOR = "," |