|
| Async (const std::shared_ptr< Loop > &loop, const private_init &) |
|
| ~Async () noexcept override |
|
template<typename... U> |
void | Send (U &&... u) |
| Wakeup the event loop and emit the event.
|
|
void | UnsafeSend () |
| Wakeup the event loop and emit the event.
|
|
Public Member Functions inherited from wpi::uv::HandleImpl< Async< T... >, uv_async_t > |
std::shared_ptr< T > | shared_from_this () |
|
std::shared_ptr< const T > | shared_from_this () const |
|
uv_async_t * | GetRaw () const noexcept |
| Get the underlying handle data structure.
|
|
Public Member Functions inherited from wpi::uv::Handle |
| Handle (const Handle &)=delete |
|
| Handle (Handle &&)=delete |
|
Handle & | operator= (const Handle &)=delete |
|
Handle & | operator= (Handle &&)=delete |
|
virtual | ~Handle () noexcept |
|
Type | GetType () const noexcept |
| Get the type of the handle.
|
|
std::string_view | GetTypeName () const noexcept |
| Get the name of the type of the handle.
|
|
std::shared_ptr< Loop > | GetLoop () const noexcept |
| Get the loop where this handle runs.
|
|
Loop & | GetLoopRef () const noexcept |
| Get the loop where this handle runs.
|
|
bool | IsActive () const noexcept |
| Check if the handle is active.
|
|
bool | IsClosing () const noexcept |
| Check if a handle is closing or closed.
|
|
void | Close () noexcept |
| Request handle to be closed.
|
|
void | SetLoopClosing (bool loopClosing) noexcept |
| Set if the loop is closing.
|
|
bool | IsLoopClosing () const noexcept |
| Get the loop closing status.
|
|
void | Reference () noexcept |
| Reference the given handle.
|
|
void | Unreference () noexcept |
| Unreference the given handle.
|
|
bool | HasReference () const noexcept |
| Check if the given handle is referenced.
|
|
size_t | RawSize () const noexcept |
| Return the size of the underlying handle type.
|
|
uv_handle_t * | GetRawHandle () const noexcept |
| Get the underlying handle data structure.
|
|
void | SetBufferAllocator (std::function< Buffer(size_t)> alloc, std::function< void(Buffer &)> dealloc) |
| Set the functions used for allocating and releasing buffers.
|
|
void | FreeBuf (Buffer &buf) const noexcept |
| Free a buffer.
|
|
template<typename T = void> |
std::shared_ptr< T > | GetData () const |
| Gets user-defined data.
|
|
void | SetData (std::shared_ptr< void > data) |
| Sets user-defined data.
|
|
void | SetLogger (Logger *logger) |
| Sets logger.
|
|
Logger * | GetLogger () const |
| Gets logger.
|
|
void | ReportError (int err) const |
| Report an error.
|
|