#include <grpc/support/port_platform.h>
#include "src/core/lib/surface/lame_client.h"
#include <memory>
#include <utility>
#include "absl/memory/memory.h"
#include "absl/status/statusor.h"
#include <grpc/grpc.h>
#include <grpc/impl/codegen/connectivity_state.h>
#include <grpc/status.h>
#include <grpc/support/log.h>
#include "src/core/lib/channel/channel_args.h"
#include "src/core/lib/channel/channel_args_preconditioning.h"
#include "src/core/lib/channel/channel_stack.h"
#include "src/core/lib/channel/promise_based_filter.h"
#include "src/core/lib/config/core_configuration.h"
#include "src/core/lib/debug/trace.h"
#include "src/core/lib/gpr/useful.h"
#include "src/core/lib/gprpp/debug_location.h"
#include "src/core/lib/gprpp/ref_counted_ptr.h"
#include "src/core/lib/gprpp/sync.h"
#include "src/core/lib/iomgr/exec_ctx.h"
#include "src/core/lib/promise/poll.h"
#include "src/core/lib/promise/promise.h"
#include "src/core/lib/surface/api_trace.h"
#include "src/core/lib/surface/channel.h"
#include "src/core/lib/surface/channel_stack_type.h"
#include "src/core/lib/transport/connectivity_state.h"
#include "src/core/lib/transport/transport.h"
Go to the source code of this file.
Namespaces | |
grpc_core | |
Macros | |
#define | GRPC_ARG_LAME_FILTER_ERROR "grpc.lame_filter_error" |
Functions | |
grpc_channel * | grpc_lame_client_channel_create (const char *target, grpc_status_code error_code, const char *error_message) |
grpc_arg | grpc_core::MakeLameClientErrorArg (grpc_error_handle *error) |
#define GRPC_ARG_LAME_FILTER_ERROR "grpc.lame_filter_error" |
Definition at line 56 of file lame_client.cc.
grpc_channel* grpc_lame_client_channel_create | ( | const char * | target, |
grpc_status_code | error_code, | ||
const char * | error_message | ||
) |
Create a lame client: this client fails every operation attempted on it.
Definition at line 131 of file lame_client.cc.