WrathChaos/StompClientLib

StompClient Disconnection.

karibandi opened this issue · 2 comments

I have been using your stomp client library for a while and its working great ,but the only problem i'm facing is disconnecting the stomp , I've tried calling the
"stompClientDidDisconnect()" and "stompClientWillDisconnect()", where even after unsubscribing the topic i'm still getting the hits from server, Could you please help with the issue?.

Hey Karibandi,
Have you called "stopClientDidDisconnect(client: socketClient)" ?
Example :

 func stompClientDidDisconnect(client: StompClientLib!) {
        if socketClient.isConnected(){
            socketClient.unsubscribe(destination: topic!)
            socketClient.disconnect()
            print("Socket is Disconnected")
        }
    }

No, i tried calling the same with out that if condition ,now i have tried the above code and it is working like a charm.
Thanks Kuray.