MCPcopy Create free account
hub / github.com/NazaraEngine/NazaraEngine / IsRegistered

Method IsRegistered

src/Nazara/Network/SocketPoller.cpp:114–117  ·  view source on GitHub ↗

! * \brief Checks if a specific socket is registered in the SocketPoller * * A registered socket is part of the SocketPoller and will be checked by the next Wait operations. * * \param socket Reference to the socket to check * * \return True if the socket is registered, false otherwise * * \see RegisterSocket * \see UnregisterSocket */

Source from the content-addressed store, hash-verified

112 * \see UnregisterSocket
113 */
114 bool SocketPoller::IsRegistered(const AbstractSocket& socket) const
115 {
116 return m_impl->IsRegistered(socket.GetNativeHandle());
117 }
118
119 /*!
120 * \brief Register a socket in the SocketPoller

Callers 1

SocketPoller.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected