So you mean that in my Rejoin coroutine i just need to add
room.OnReadyToConnect += (sender, e) =>
{
Debug.Log("Ready to connect to room!");
StartCoroutine (room.Connect ());
};
or only StartCoroutine (room.Connect ()); and everything else till Rejoin remains the same


