You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have an enum named ConnectionState. We also have an enum named ConnectionStatus. While fine because both of the things they are used for are stateful in nature, they're a little close and could lead to confusion or pseudo-ambiguity.
We should check the names of our enums (and potentially other things) to see if we can make them more specific. For the above example, perhaps TcpState and WiFiState.
This doesn't block publishing but is a future thing to examine.