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
public interface SubscriptionListener { public void onSubscribe(String topic, ClientContext context); public void onUnsubscribe(String topic, ClientContext context); public String getTopic(); } public interface SubscriptionListeners { public void addListener(SubscriptionListener listener); public void removeListener(SubscriptionListener listener); public List<SubscriptionListener> getListeners(String topic); } public interface Authorizer { public boolean authorize(String topic, ClientContext context); public String getTopic(); } public interface Authorizers { public void addAuthorizer(Authorizer auth); public void removeAuthorizer(Authorizer auth); public List<Authorizer> getAuthorizers(String topic); }
The text was updated successfully, but these errors were encountered:
Related to #24
Sorry, something went wrong.
Authorizers implemented (not tested)
No branches or pull requests
The text was updated successfully, but these errors were encountered: