mirror of https://github.com/grpc/grpc.git
parent
c4ed813906
commit
86bdc2d440
2 changed files with 27 additions and 0 deletions
@ -0,0 +1,18 @@ |
||||
#ifndef GRPC_CORE_LIB_IOMGR_POLLER_EVENTMANAGER_INTERFACE_H_ |
||||
#define GRPC_CORE_LIB_IOMGR_POLLER_EVENTMANAGER_INTERFACE_H_ |
||||
|
||||
namespace grpc { |
||||
|
||||
namespace experimental { |
||||
|
||||
class BaseEventManagerInterface { |
||||
public: |
||||
virtual ~BaseEventManagerInterface() {} |
||||
}; |
||||
|
||||
class EpollEventManagerInterface : public BaseEventManagerInterface {}; |
||||
|
||||
} // namespace experimental
|
||||
} // namespace grpc
|
||||
|
||||
#endif // GRPC_CORE_LIB_IOMGR_POLLER_EVENTMANAGER_INTERFACE_H_
|
Loading…
Reference in new issue