#include <uv.h>
#include <functional>
#include <memory>
#include <utility>
#include <wpi/Signal.h>
#include "wpinet/uv/Request.h"
Go to the source code of this file.
|
void | wpi::uv::QueueWork (Loop &loop, const std::shared_ptr< WorkReq > &req) |
| Initializes a work request which will run on the thread pool. More...
|
|
void | wpi::uv::QueueWork (const std::shared_ptr< Loop > &loop, const std::shared_ptr< WorkReq > &req) |
| Initializes a work request which will run on the thread pool. More...
|
|
void | wpi::uv::QueueWork (Loop &loop, std::function< void()> work, std::function< void()> afterWork) |
| Initializes a work request which will run on the thread pool. More...
|
|
void | wpi::uv::QueueWork (const std::shared_ptr< Loop > &loop, std::function< void()> work, std::function< void()> afterWork) |
| Initializes a work request which will run on the thread pool. More...
|
|