Sha256: 48380c9da8bffbdecc569a7e944b6299d935de3e893591baf8574dfb5891900e
Contents?: true
Size: 1.64 KB
Versions: 1
Compression:
Stored size: 1.64 KB
Contents
// // Copyright 2018 gRPC authors. // // Licensed 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. // #ifndef GRPC_SRC_CORE_XDS_GRPC_XDS_ENDPOINT_PARSER_H #define GRPC_SRC_CORE_XDS_GRPC_XDS_ENDPOINT_PARSER_H #include "absl/strings/string_view.h" #include "envoy/config/endpoint/v3/endpoint.upbdefs.h" #include "src/core/xds/grpc/xds_endpoint.h" #include "src/core/xds/xds_client/xds_client.h" #include "src/core/xds/xds_client/xds_resource_type.h" #include "src/core/xds/xds_client/xds_resource_type_impl.h" #include "upb/reflection/def.h" namespace grpc_core { class XdsEndpointResourceType final : public XdsResourceTypeImpl<XdsEndpointResourceType, XdsEndpointResource> { public: absl::string_view type_url() const override { return "envoy.config.endpoint.v3.ClusterLoadAssignment"; } DecodeResult Decode(const XdsResourceType::DecodeContext& context, absl::string_view serialized_resource) const override; void InitUpbSymtab(XdsClient*, upb_DefPool* symtab) const override { envoy_config_endpoint_v3_ClusterLoadAssignment_getmsgdef(symtab); } }; } // namespace grpc_core #endif // GRPC_SRC_CORE_XDS_GRPC_XDS_ENDPOINT_PARSER_H
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
grpc-1.68.1 | src/core/xds/grpc/xds_endpoint_parser.h |