Sha256: 5cfa952e2fe85be326b0887b6908c21e8452fe9ef221ed87cb22a015dc9cd528
Contents?: true
Size: 1.99 KB
Versions: 11
Compression:
Stored size: 1.99 KB
Contents
// // Copyright 2015 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_LIB_IOMGR_RESOLVE_ADDRESS_IMPL_H #define GRPC_SRC_CORE_LIB_IOMGR_RESOLVE_ADDRESS_IMPL_H #include <stddef.h> #include <grpc/support/port_platform.h> #include "src/core/lib/iomgr/exec_ctx.h" #include "src/core/lib/iomgr/port.h" #include "src/core/lib/iomgr/resolve_address.h" namespace grpc_core { // A fire and forget class to schedule DNS resolution callbacks on the ExecCtx, // which is frequently necessary to avoid lock inversion related problems. class DNSCallbackExecCtxScheduler { public: DNSCallbackExecCtxScheduler( std::function<void(absl::StatusOr<std::vector<grpc_resolved_address>>)> on_done, absl::StatusOr<std::vector<grpc_resolved_address>> param) : on_done_(std::move(on_done)), param_(std::move(param)) { GRPC_CLOSURE_INIT(&closure_, RunCallback, this, grpc_schedule_on_exec_ctx); ExecCtx::Run(DEBUG_LOCATION, &closure_, absl::OkStatus()); } private: static void RunCallback(void* arg, grpc_error_handle /* error */) { DNSCallbackExecCtxScheduler* self = static_cast<DNSCallbackExecCtxScheduler*>(arg); self->on_done_(std::move(self->param_)); delete self; } const std::function<void(absl::StatusOr<std::vector<grpc_resolved_address>>)> on_done_; absl::StatusOr<std::vector<grpc_resolved_address>> param_; grpc_closure closure_; }; } // namespace grpc_core #endif // GRPC_SRC_CORE_LIB_IOMGR_RESOLVE_ADDRESS_IMPL_H
Version data entries
11 entries across 11 versions & 1 rubygems