Back to project page libgdx-chat-example.
The source code is released under:
Apache License
If you think the Android project libgdx-chat-example listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.stofkat.chat.server; /*from ww w .j av a2 s .co m*/ /** * This is a subclass of {@link ActionHandlerRegistry} which allows registration * of handlers by passing in the handler instance directly. * * @author David Peterson */ public interface InstanceActionHandlerRegistry extends ActionHandlerRegistry { /** * Adds the specified handler instance to the registry. * * @param handler * The action handler. */ public void addHandler(ActionHandler<?, ?> handler); /** * Removes the specified handler. * * @param handler * The handler. * @return <code>true</code> if the handler was previously registered and * was successfully removed. */ boolean removeHandler(ActionHandler<?, ?> handler); }