crossbario / autobahn-java

WebSocket & WAMP in Java for Android and Java 8
https://crossbar.io/autobahn
MIT License
1.52k stars 425 forks source link

Unsubscribe from a topic #352

Closed om26er closed 6 years ago

om26er commented 6 years ago

Currently there is no way to unsubscribe a topic. We probably need to implement that.

one use case for that is to conserve mobile data usage i.e. only receive events when required.

@oberstet thoughts ?

oberstet commented 6 years ago

yeah, unsubscribing from a topic is sth that WAMP provides.

both ABJS and ABPy are actually returning a subscription object when subscribing, and use that to unsubscribe:

om26er commented 6 years ago

landed via https://github.com/crossbario/autobahn-java/pull/353