// Copyright (C) 2015 Jérôme Leclercq // This file is part of the "Nazara Engine - Network module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_SOCKETPOLLERIMPL_HPP #define NAZARA_SOCKETPOLLERIMPL_HPP #include #include #include #include #include namespace Nz { class SocketPollerImpl { public: SocketPollerImpl(); ~SocketPollerImpl(); void Clear(); bool IsReady(SocketHandle socket) const; bool IsRegistered(SocketHandle socket) const; bool RegisterSocket(SocketHandle socket); void UnregisterSocket(SocketHandle socket); int Wait(UInt64 msTimeout, SocketError* error); private: std::unordered_set m_activeSockets; std::unordered_set m_sockets; std::vector m_events; int m_handle; }; } #endif // NAZARA_SOCKETPOLLERIMPL_HPP