Package org.apache.wicket.protocol.ws.jee

Examples of org.apache.wicket.protocol.ws.jee.AbstractWebsocketBehavior


public class ChatRoomPanel extends Panel {

  public ChatRoomPanel(String id) {
    super(id)
   
    add(new AbstractWebsocketBehavior(false) {     
      @Override
      protected Url getSocketCreationURL() {       
        Url url = getContextPathURL();
        url.getSegments().add("chat");
       
View Full Code Here

TOP

Related Classes of org.apache.wicket.protocol.ws.jee.AbstractWebsocketBehavior

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.