You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 22, 2019. It is now read-only.
I would like to subscribe to a wildcard wamp topic (i.e. "*"). I am using SubscriptionFlags.Wildcard with a topic name of empty string "". (see the code below). But the msg was not received.
Could you give me some idea and example code (preferred) on how the wildcard subscription would work? Thanks
Hello,
I would like to subscribe to a wildcard wamp topic (i.e. "*"). I am using SubscriptionFlags.Wildcard with a topic name of empty string "". (see the code below). But the msg was not received.
Could you give me some idea and example code (preferred) on how the wildcard subscription would work? Thanks
----code-----
wampclient.makeSubscription("", SubscriptionFlags.Wildcard, String.class)
.observeOn(rxScheduler)
.subscribe(new Action1() {
@OverRide
public void call(String eventDetails) {
LOG.debug("event for 'onhello' received: " + eventDetails.toString());
}
});
BTW, another subscribe API shown as below does not work either.
wampclient..makeSubscription("", SubscriptionFlags.Wildcard, String.class);
Regards,
Jun
The text was updated successfully, but these errors were encountered: