aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/completion_queue.h
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-01-21 01:04:36 -0800
committerGravatar David Garcia Quintas <dgq@google.com>2016-01-21 01:04:36 -0800
commit08a0a3306e1b0d5597a0541624f53ee35bd34463 (patch)
tree1f961b815469f663ec45888dfebe55bf7fc7361a /include/grpc++/completion_queue.h
parentf3ddb7c55a4b158843fe44183cbf9ce72f4c9355 (diff)
Made "codedgen" directories closed over #includes
Diffstat (limited to 'include/grpc++/completion_queue.h')
-rw-r--r--include/grpc++/completion_queue.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/grpc++/completion_queue.h b/include/grpc++/completion_queue.h
index c1f4172322..7ed8f59008 100644
--- a/include/grpc++/completion_queue.h
+++ b/include/grpc++/completion_queue.h
@@ -36,7 +36,6 @@
#ifndef GRPCXX_COMPLETION_QUEUE_H
#define GRPCXX_COMPLETION_QUEUE_H
-#include <grpc/support/time.h>
#include <grpc++/impl/grpc_library.h>
#include <grpc++/support/status.h>
#include <grpc++/support/time.h>
@@ -190,17 +189,6 @@ class CompletionQueue : public GrpcLibrary {
grpc_completion_queue* cq_; // owned
};
-/// An interface allowing implementors to process and filter event tags.
-class CompletionQueueTag {
- public:
- virtual ~CompletionQueueTag() {}
- // Called prior to returning from Next(), return value is the status of the
- // operation (return status is the default thing to do). If this function
- // returns false, the tag is dropped and not returned from the completion
- // queue
- virtual bool FinalizeResult(void** tag, bool* status) = 0;
-};
-
/// A specific type of completion queue used by the processing of notifications
/// by servers. Instantiated by \a ServerBuilder.
class ServerCompletionQueue : public CompletionQueue {