12 inline Request::Request (Request&& src)
13 : Request{src.fInputStream_}
15 fBodyInputStream_ = move (src.fBodyInputStream_);
16 fBody_ = move (src.fBody_);
18 inline Request& Request::operator= (Request&& rhs)
noexcept
20 inherited::operator= (move (rhs));
21 fBodyInputStream_ = move (rhs.fBodyInputStream_);
22 fBody_ = move (rhs.fBody_);
unique_lock< AssertExternallySynchronizedMutex > WriteContext
Instantiate AssertExternallySynchronizedMutex::WriteContext to designate an area of code where protec...