How can I check if the twitter streaming API is connected or disconnected ? Is there any variable that stores this information ?
On Failure, Twitter Hosebird Client (hbc) internally tries to reconnect to the API. This information is logged. How can I retrieve the response status of the connection in a variable ?
This is a rather old question, but since I ran into the same problem, I wanted to share my solution. Basically, what I do is listening for a
SocketTimeoutException
exception, and if it occurs, I set a booleanisConnected = false
. Once I start receiving statuses again, I set that boolean back toisConnected = true
. It is not the prettiest solution, but it works. Here my code for the Listener: