Mazyod / PhoenixSharp

C# Phoenix Channels client. Unity Compatible.
MIT License
163 stars 27 forks source link

Socket automatic recovery #4

Closed jonathanleang closed 2 years ago

jonathanleang commented 7 years ago

how important is this ?

Mazyod commented 7 years ago

@jonathanleang it's just an enhancement. Currently, if the socket connection closes because of an error, it doesn't automatically attempt to reconnect for you. You have to handle the error, and reconnect manually.

In my project, I use a FSM to manage the socket state, so I don't need the library to handle recovery for me.

jonathanleang commented 7 years ago

Thanks for creating this project !