IXWebSocket/ixwebsocket/IXEventFd.h

24 lines
338 B
C
Raw Normal View History

2018-11-07 21:24:08 +01:00
/*
* IXEventFd.h
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone, Inc. All rights reserved.
*/
#pragma once
namespace ix
{
class EventFd {
public:
EventFd();
virtual ~EventFd();
bool notify();
bool clear();
int getFd();
private:
int _eventfd;
};
}