RDMA-Rust / sideway

A better wrapper for using RDMA programming APIs in Rust flavor
Mozilla Public License 2.0
2 stars 0 forks source link

feat(cq): add support for cq and comp_channel #10

Closed FujiZ closed 2 months ago

FujiZ commented 2 months ago
  1. implement generic builder for both cq and cq_ex
  2. implement comp_channel and associate its lifetime with cq
FujiZ commented 2 months ago

Maybe we can put CompletionQueue and CompletionChannel together in a single module called completion.

dragonJACson commented 2 months ago

Maybe we can put CompletionQueue and CompletionChannel together in a single module called completion.

I agree, as CompletionChannel would only be a part of CompletionQueue? So both of them and some other attributes related with CQ should be in a single module

FujiZ commented 2 months ago

Ref #8