| 31 | class TFdRequestQueue: public TBaseLockFreeRequestQueue { |
| 32 | public: |
| 33 | inline TFdRequestQueue() { |
| 34 | TPipeHandle::Pipe(R_, W_); |
| 35 | SetNonBlock(W_); |
| 36 | } |
| 37 | |
| 38 | void Schedule(IRequestRef req) override { |
| 39 | Q_.Enqueue(req); |
nothing calls this directly
no test coverage detected