We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reverse arguments to be able to write this :
Cobalt.subscribeToChannel("myChannel", new PubSubInterface() { @Override public void onMessageReceived(@Nullable JSONObject message, @NonNull String channel) { Log.d("hop", "myChannel message received"); } });
instead of this :
Cobalt.subscribeToChannel(new PubSubInterface() { @Override public void onMessageReceived(@Nullable JSONObject message, @NonNull String channel) { Log.d("hop", "myChannel message received"); } }, "myChannel");
and update samples accordingly
The text was updated successfully, but these errors were encountered:
cobaltians/Cobalt#189 reversing params for subscribe and unsubscribe
46dd459
93b5417
No branches or pull requests
Reverse arguments to be able to write this :
instead of this :
and update samples accordingly
The text was updated successfully, but these errors were encountered: