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

org.java_websocket.framing.ContinuousFrame Maven / Gradle / Ivy

There is a newer version: 1.5.7
Show newest version
package org.java_websocket.framing;

/**
 * Class to represent a continuous frame
 */
public class ContinuousFrame extends DataFrame {

	/**
	 * constructor which sets the opcode of this frame to continuous
	 */
	public ContinuousFrame() {
		super( Opcode.CONTINUOUS );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy