Sha256: 74fde15b268b90c61f7f100e65354b5f4e554ed0043bd4949f2bb6fe3349b474
Contents?: true
Size: 1.64 KB
Versions: 5
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 "upb/reflection/def.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" 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
5 entries across 5 versions & 1 rubygems