All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.atmosphere.jboss.websockets.frame.PongFrame Maven / Gradle / Ivy

package org.atmosphere.jboss.websockets.frame;

import org.atmosphere.jboss.websockets.FrameType;
import org.atmosphere.jboss.websockets.FrameType;

/**
 * @author Mike Brock
 */
public class PongFrame extends AbstractFrame {
  private static final PongFrame INSTANCE = new PongFrame();

  private PongFrame() {
    super(FrameType.Pong);
  }

  public static PongFrame get() {
    return INSTANCE;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy