Adding reconnecting async ssl example

- async_reconnecting_ssl_client.py will automatically close and
reconnect to a server when it becomes available (rather than hanging or
dying when the server disappears)
This commit is contained in:
Jacob Alexander
2019-10-05 14:50:56 -07:00
parent 722579d671
commit 940ab9916d
4 changed files with 169 additions and 0 deletions

View File

@@ -8,4 +8,5 @@ interface Example {
longRunning @0 () -> (value: Bool);
subscribeStatus @1 (subscriber: StatusSubscriber);
alive @2 () -> (value: Bool);
}