aboutsummaryrefslogtreecommitdiff
path: root/include/grpcpp/impl/codegen/service_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/grpcpp/impl/codegen/service_type.h')
-rw-r--r--include/grpcpp/impl/codegen/service_type.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/grpcpp/impl/codegen/service_type.h b/include/grpcpp/impl/codegen/service_type.h
index 88bcb4a9e4..182570ef2f 100644
--- a/include/grpcpp/impl/codegen/service_type.h
+++ b/include/grpcpp/impl/codegen/service_type.h
@@ -49,7 +49,7 @@ class ServerAsyncStreamingInterface {
virtual void SendInitialMetadata(void* tag) = 0;
private:
- friend class grpc::ServerInterface;
+ friend class ::grpc::ServerInterface;
virtual void BindCall(Call* call) = 0;
};
} // namespace internal
@@ -102,11 +102,11 @@ class Service {
protected:
template <class Message>
- void RequestAsyncUnary(int index, grpc::ServerContext* context,
+ void RequestAsyncUnary(int index, ::grpc::ServerContext* context,
Message* request,
internal::ServerAsyncStreamingInterface* stream,
- grpc::CompletionQueue* call_cq,
- grpc::ServerCompletionQueue* notification_cq,
+ ::grpc::CompletionQueue* call_cq,
+ ::grpc::ServerCompletionQueue* notification_cq,
void* tag) {
// Typecast the index to size_t for indexing into a vector
// while preserving the API that existed before a compiler
@@ -116,29 +116,29 @@ class Service {
notification_cq, tag, request);
}
void RequestAsyncClientStreaming(
- int index, grpc::ServerContext* context,
+ int index, ::grpc::ServerContext* context,
internal::ServerAsyncStreamingInterface* stream,
- grpc::CompletionQueue* call_cq,
- grpc::ServerCompletionQueue* notification_cq, void* tag) {
+ ::grpc::CompletionQueue* call_cq,
+ ::grpc::ServerCompletionQueue* notification_cq, void* tag) {
size_t idx = static_cast<size_t>(index);
server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq,
notification_cq, tag);
}
template <class Message>
void RequestAsyncServerStreaming(
- int index, grpc::ServerContext* context, Message* request,
+ int index, ::grpc::ServerContext* context, Message* request,
internal::ServerAsyncStreamingInterface* stream,
- grpc::CompletionQueue* call_cq,
- grpc::ServerCompletionQueue* notification_cq, void* tag) {
+ ::grpc::CompletionQueue* call_cq,
+ ::grpc::ServerCompletionQueue* notification_cq, void* tag) {
size_t idx = static_cast<size_t>(index);
server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq,
notification_cq, tag, request);
}
void RequestAsyncBidiStreaming(
- int index, grpc::ServerContext* context,
+ int index, ::grpc::ServerContext* context,
internal::ServerAsyncStreamingInterface* stream,
- grpc::CompletionQueue* call_cq,
- grpc::ServerCompletionQueue* notification_cq, void* tag) {
+ ::grpc::CompletionQueue* call_cq,
+ ::grpc::ServerCompletionQueue* notification_cq, void* tag) {
size_t idx = static_cast<size_t>(index);
server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq,
notification_cq, tag);