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 FrameProtocolHandler. 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 apingframe with the specified payload (if any).java.util.concurrent.Future<Frame>TyrusWebSocket. sendPong(byte[] data)Sends apingframe 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 voidProtocolHandler. 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 FrameExtendedExtension. processIncoming(ExtendedExtension.ExtensionContext context, Frame frame)Process incoming frame.FrameExtendedExtension. 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 FrameExtendedExtension. processIncoming(ExtendedExtension.ExtensionContext context, Frame frame)Process incoming frame.FrameExtendedExtension. 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 classBinaryFrameBinary frame representation.classCloseFrameClose frame representation.classPingFramePing frame representation.classPongFramePong frame representation.classTextFrameText frame representation.classTyrusFrameFrame representation used in Tyrus runtime.Methods in org.glassfish.tyrus.core.frame that return Frame Modifier and Type Method Description FrameFrame.Builder. build()Build new frame.Methods in org.glassfish.tyrus.core.frame with parameters of type Frame Modifier and Type Method Description static Frame.BuilderFrame. builder(Frame frame)Create newFrame.Builderbased on provided frame.static TyrusFrameTyrusFrame. wrap(Frame frame, byte inFragmentedType, java.nio.ByteBuffer remainder)TyrusFramefactory 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.
-