An interface implemented by an object in order to be notified when more data is available
to be sent. A pointer to an IMoreToSend
object is passed into the functions
CreateDeltaRW()
and CreateRodSession()
defined on
WorkingSetMachine.
struct IMoreToSend
{
virtual void OnMoreToSend() = 0;
};
void OnMoreToSend()
Called during an exclusive lock on the PSpace
(when either local or remote
operations are being applied), to indicate that there is more to be sent by
the associated DetaRW
.