Uses of Class
org.glassfish.tyrus.core.frame.Frame
-
Packages that use Frame Package Description org.glassfish.tyrus.core Core classes.org.glassfish.tyrus.core.extension WebSocket Extension support.org.glassfish.tyrus.core.frame WebSocket frame representations. -
-
Uses of Frame in org.glassfish.tyrus.core
Methods in org.glassfish.tyrus.core that return Frame Modifier and Type Method Description Frame
ProtocolHandler. unframe(java.nio.ByteBuffer buffer)
TODO!Methods in org.glassfish.tyrus.core that return types with arguments of type Frame Modifier and Type Method Description java.util.concurrent.Future<Frame>
ProtocolHandler. close(int code, java.lang.String reason)
java.util.concurrent.Future<Frame>
ProtocolHandler. send(byte[] data)
Deprecated.java.util.concurrent.Future<Frame>
ProtocolHandler. send(byte[] data, WriterInfo writerInfo)
java.util.concurrent.Future<Frame>
ProtocolHandler. send(java.lang.String data)
Deprecated.java.util.concurrent.Future<Frame>
ProtocolHandler. send(java.lang.String data, WriterInfo writerInfo)
java.util.concurrent.Future<Frame>
TyrusWebSocket. sendBinary(byte[] data)
Deprecated.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendBinary(byte[] bytes, boolean last)
Deprecated.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendBinary(byte[] bytes, boolean last, WriterInfo writerInfo)
Sends a fragment of a complete message.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendBinary(byte[] bytes, int off, int len, boolean last)
Deprecated.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendBinary(byte[] bytes, int off, int len, boolean last, WriterInfo writerInfo)
Sends a fragment of a complete message.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendBinary(byte[] data, WriterInfo writerInfo)
Send a binary frame to the remote endpoint.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendPing(byte[] data)
Sends aping
frame with the specified payload (if any).java.util.concurrent.Future<Frame>
TyrusWebSocket. sendPong(byte[] data)
Sends aping
frame with the specified payload (if any).java.util.concurrent.Future<Frame>
ProtocolHandler. sendRawFrame(java.nio.ByteBuffer data)
Raw frame is always whole (not partial).java.util.concurrent.Future<Frame>
TyrusWebSocket. sendRawFrame(java.nio.ByteBuffer data)
Send a frame to the remote endpoint.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendText(java.lang.String data)
Deprecated.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendText(java.lang.String fragment, boolean last)
Deprecated.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendText(java.lang.String fragment, boolean last, WriterInfo writerInfo)
Sends a fragment of a complete message.java.util.concurrent.Future<Frame>
TyrusWebSocket. sendText(java.lang.String data, WriterInfo writerInfo)
Send a text frame to the remote endpoint.java.util.concurrent.Future<Frame>
ProtocolHandler. stream(boolean last, byte[] bytes, int off, int len)
Deprecated.java.util.concurrent.Future<Frame>
ProtocolHandler. stream(boolean last, byte[] bytes, int off, int len, WriterInfo writerInfo)
java.util.concurrent.Future<Frame>
ProtocolHandler. stream(boolean last, java.lang.String fragment)
Deprecated.java.util.concurrent.Future<Frame>
ProtocolHandler. stream(boolean last, java.lang.String fragment, WriterInfo writerInfo)
Methods in org.glassfish.tyrus.core with parameters of type Frame Modifier and Type Method Description void
ProtocolHandler. process(Frame frame, TyrusWebSocket socket)
TODO. -
Uses of Frame in org.glassfish.tyrus.core.extension
Methods in org.glassfish.tyrus.core.extension that return Frame Modifier and Type Method Description Frame
ExtendedExtension. processIncoming(ExtendedExtension.ExtensionContext context, Frame frame)
Process incoming frame.Frame
ExtendedExtension. processOutgoing(ExtendedExtension.ExtensionContext context, Frame frame)
Process outgoing frame.Methods in org.glassfish.tyrus.core.extension with parameters of type Frame Modifier and Type Method Description Frame
ExtendedExtension. processIncoming(ExtendedExtension.ExtensionContext context, Frame frame)
Process incoming frame.Frame
ExtendedExtension. processOutgoing(ExtendedExtension.ExtensionContext context, Frame frame)
Process outgoing frame. -
Uses of Frame in org.glassfish.tyrus.core.frame
Subclasses of Frame in org.glassfish.tyrus.core.frame Modifier and Type Class Description class
BinaryFrame
Binary frame representation.class
CloseFrame
Close frame representation.class
PingFrame
Ping frame representation.class
PongFrame
Pong frame representation.class
TextFrame
Text frame representation.class
TyrusFrame
Frame representation used in Tyrus runtime.Methods in org.glassfish.tyrus.core.frame that return Frame Modifier and Type Method Description Frame
Frame.Builder. build()
Build new frame.Methods in org.glassfish.tyrus.core.frame with parameters of type Frame Modifier and Type Method Description static Frame.Builder
Frame. builder(Frame frame)
Create newFrame.Builder
based on provided frame.static TyrusFrame
TyrusFrame. wrap(Frame frame, byte inFragmentedType, java.nio.ByteBuffer remainder)
TyrusFrame
factory method.Constructors in org.glassfish.tyrus.core.frame with parameters of type Frame Constructor Description BinaryFrame(Frame frame)
Constructor.BinaryFrame(Frame frame, boolean continuation)
Constructor.Builder(Frame frame)
Constructor.CloseFrame(Frame frame)
Constructor.Frame(Frame frame)
Copy constructor.PingFrame(Frame frame)
Constructor.PongFrame(Frame frame)
Constructor.TextFrame(Frame frame, java.nio.ByteBuffer remainder)
Constructor.TextFrame(Frame frame, java.nio.ByteBuffer remainder, boolean continuation)
Constructor.TyrusFrame(Frame frame, TyrusFrame.FrameType frameType)
Constructor.
-