Notify Remote Clients That You Have Left The Field

You may notify remote clients in the field of view that you have left the field.

// This event is raised when a remote client disappears
REG_EVENT(this->tcpField->GetDisappearEvent(), [this](void*, const string& remoteUid)
{
this->OnDisappear(e);
});


// This is how to notify the remote clients
field->Disappear();