ublk-cpp v0.0
Loading...
Searching...
No Matches
ublk::IoHandler Concept Reference

Concept of an async handler with handle_io(const IoData&). More...

#include <handler.hpp>

Concept definition

template<typename T>
concept ublk::IoHandler = requires(T &t, const IoData &io_data) {
{ t.handle_io(io_data) } noexcept -> detail::ex::sender;
}
Concept of an async handler with handle_io(const IoData&).
Definition handler.hpp:36
Context of a single I/O request delivered to a handler.
Definition handler.hpp:23

Detailed Description

Concept of an async handler with handle_io(const IoData&).

Definition at line 36 of file handler.hpp.