jamiewest / signalr_core

ASP.NET Core SignalR Dart Client
https://pub.dev/packages/signalr_core
MIT License
90 stars 58 forks source link

Retry lost connection forever? #85

Closed bar10dr closed 7 months ago

bar10dr commented 2 years ago

You can specify a reconnect list like this

final list = [10000, 10000, 10000];

.withAutomaticReconnect(list)

After the list is exhausted, it stops trying.

How can I make it try to reconnect forever? Or is there some other way I should handle this?