| 1292 | }; |
| 1293 | |
| 1294 | TIBRecvMicro::TIBRecvMicro(IIBCollective* col, TIBMicroPeerTable* peerTable) |
| 1295 | : IB(*(TIBCollective*)col) |
| 1296 | { |
| 1297 | Y_ASSERT(typeid(IB) == typeid(TIBCollective)); |
| 1298 | if (IB.GetMsg(&Id, &QPN, peerTable)) { |
| 1299 | Data = IB.BP->GetBufData(Id); |
| 1300 | } else { |
| 1301 | Data = nullptr; |
| 1302 | } |
| 1303 | } |
| 1304 | |
| 1305 | TIBRecvMicro::~TIBRecvMicro() { |
| 1306 | if (Data) { |
nothing calls this directly
no test coverage detected