
io.jsync.http.WebSocketFrame Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsync.io Show documentation
Show all versions of jsync.io Show documentation
jsync.io is a non-blocking, event-driven networking framework for Java
/*
* Copyright (c) 2010 The Netty Project
* ------------------------------------
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package io.jsync.http;
/**
* A Web Socket frame that represents either text or binary data.
*
* @author The Netty Project
* @author Trustin Lee
* @version $Rev: 2080 $, $Date: 2010-01-26 18:04:19 +0900 (Tue, 26 Jan 2010) $
*/
public interface WebSocketFrame {
FrameType type();
/**
* Returns {@code true} if and only if the content of this frame is a string
* encoded in UTF-8.
*/
boolean isText();
/**
* Returns {@code true} if and only if the content of this frame is an
* arbitrary binary data.
*/
boolean isBinary();
/**
* Converts the content of this frame into a UTF-8 string and returns the
* converted string.
*/
String textData();
/**
* Returns the string representation of this frame. Please note that this
* method is not identical to {@link #textData()}.
*/
String toString();
/**
* Returns {@code true} if this is the final frame. This should be {@code true} unless a number of
* coninuation frames are expected to follow this frame.
*/
boolean isFinalFrame();
/**
* List of all frame types.
*/
enum FrameType {
CONTINUATION,
TEXT,
BINARY,
CLOSE,
PING,
PONG,
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy