| 372 | |
| 373 | struct TRequestDescr: public TIntrusiveListItem<TRequestDescr> { |
| 374 | inline TRequestDescr(const TString& guid, const TNotifyHandleRef& hndl, const TMessage& msg) |
| 375 | : Guid(guid) |
| 376 | , Hndl(hndl) |
| 377 | , Msg(msg) |
| 378 | , TS(TimeStamp()) |
| 379 | { |
| 380 | } |
| 381 | |
| 382 | TString Guid; |
| 383 | TNotifyHandleRef Hndl; |
nothing calls this directly
no test coverage detected