Package org.jboss.as.websockets.frame

Examples of org.jboss.as.websockets.frame.PingFrame


      case Text:
        return TextFrame.from(_readTextFrame());
      case Binary:
        return BinaryFrame.from(_readBinaryFrame());
      case Ping:
        return new PingFrame();
      case Pong:
        return new PongFrame();
      case ConnectionClose:
        closeSocket();
        return new CloseFrame();
View Full Code Here


      case Text:
        return TextFrame.from(_readTextFrame());
      case Binary:
        return BinaryFrame.from(_readBinaryFrame());
      case Ping:
        return new PingFrame();
      case Pong:
        return new PongFrame();
      case ConnectionClose:
        closeSocket();
        return new CloseFrame();
View Full Code Here

TOP

Related Classes of org.jboss.as.websockets.frame.PingFrame

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.