#include <userver/ugrpc/server/call_context.hpp>
gRPC call context
Definition at line 88 of file call_context.hpp.
Inheritance diagram for ugrpc::server::CallContext:Public Member Functions | |
| grpc::ServerContext & | GetServerContext () |
| std::string_view | GetCallName () const |
Name of the RPC in the format full.path.ServiceName/MethodName | |
| std::string_view | GetServiceName () const |
| Get name of gRPC service. | |
| std::string_view | GetMethodName () const |
| Get name of called gRPC method. | |
| tracing::Span & | GetSpan () |
| Get the span of the current RPC. | |
| utils::AnyStorage< StorageContext > & | GetStorageContext () |
| Returns call context for storing per-call custom data. | |
|
inherited |
ServerContext used for this RPC
|
inherited |
Returns call context for storing per-call custom data.
The context can be used to pass data from server middleware to client handler or from one middleware to another one.
In authentication middleware:
In client handler: