| 9 | namespace io { |
| 10 | |
| 11 | struct IOBatchBase : public IIOBatch |
| 12 | { |
| 13 | IO_RC_OBJECT_BODY |
| 14 | public: |
| 15 | void reserve(uint64_t n) SKR_NOEXCEPT |
| 16 | { |
| 17 | requests.reserve(n); |
| 18 | } |
| 19 | |
| 20 | skr::span<IORequestId> get_requests() SKR_NOEXCEPT |
| 21 | { |
no test coverage detected