@brief Constructs a free async request of given type @param type Type of this specific request
| 178 | /// @brief Constructs a free async request of given type |
| 179 | /// @param type Type of this specific request |
| 180 | AsyncRequest(Type type) : state(State::Free), type(type), flags(0), unused(0), userFlags(0) {} |
| 181 | |
| 182 | /// @brief Ask to stop current async operation |
| 183 | /// @param eventLoop The event Loop associated with this request |
nothing calls this directly
no outgoing calls
no test coverage detected