aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpcpp/server.h
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-03-21 21:07:22 -0700
committerGravatar Vijay Pai <vpai@vpai-macbookpro.roam.corp.google.com>2018-03-22 19:09:01 -0700
commita4da2d2a54d2e57b06d86ead8f9674fd7d5cde32 (patch)
tree1196feb8eedcdd9a7baef7811a0ed77ffaf53f8f /include/grpcpp/server.h
parent31641351c278de45ee3a77a9e0a72824422a688b (diff)
Eliminate existence of SneakyCallOpSet, some server cleanup
Diffstat (limited to 'include/grpcpp/server.h')
-rw-r--r--include/grpcpp/server.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/grpcpp/server.h b/include/grpcpp/server.h
index e88e7966dc..81c3907f86 100644
--- a/include/grpcpp/server.h
+++ b/include/grpcpp/server.h
@@ -162,8 +162,8 @@ class Server : public ServerInterface, private GrpcLibraryCodegen {
friend class ServerInitializer;
class SyncRequest;
- class AsyncRequest;
- class ShutdownRequest;
+ class UnimplementedAsyncRequest;
+ class UnimplementedAsyncResponse;
/// SyncRequestThreadManager is an implementation of ThreadManager. This class
/// is responsible for polling for incoming RPCs and calling the RPC handlers.
@@ -171,10 +171,6 @@ class Server : public ServerInterface, private GrpcLibraryCodegen {
/// interface)
class SyncRequestThreadManager;
- class UnimplementedAsyncRequestContext;
- class UnimplementedAsyncRequest;
- class UnimplementedAsyncResponse;
-
/// Register a generic service. This call does not take ownership of the
/// service. The service must exist for the lifetime of the Server instance.
void RegisterAsyncGenericService(AsyncGenericService* service) override;