Uses of Class
org.glassfish.tyrus.core.frame.Frame
Packages that use Frame
Package
Description
Core classes.
WebSocket Extension support.
WebSocket frame representations.
-
Uses of Frame in org.glassfish.tyrus.core
Methods in org.glassfish.tyrus.core that return FrameMethods in org.glassfish.tyrus.core that return types with arguments of type FrameModifier and TypeMethodDescriptionProtocolHandler.send(byte[] data) Deprecated.ProtocolHandler.send(byte[] data, WriterInfo writerInfo) Deprecated.ProtocolHandler.send(String data, WriterInfo writerInfo) TyrusWebSocket.sendBinary(byte[] data) Deprecated.TyrusWebSocket.sendBinary(byte[] bytes, boolean last) Deprecated.TyrusWebSocket.sendBinary(byte[] bytes, boolean last, WriterInfo writerInfo) Sends a fragment of a complete message.TyrusWebSocket.sendBinary(byte[] bytes, int off, int len, boolean last) Deprecated.TyrusWebSocket.sendBinary(byte[] bytes, int off, int len, boolean last, WriterInfo writerInfo) Sends a fragment of a complete message.TyrusWebSocket.sendBinary(byte[] data, WriterInfo writerInfo) Send a binary frame to the remote endpoint.TyrusWebSocket.sendPing(byte[] data) Sends apingframe with the specified payload (if any).TyrusWebSocket.sendPong(byte[] data) Sends apingframe with the specified payload (if any).ProtocolHandler.sendRawFrame(ByteBuffer data) Raw frame is always whole (not partial).TyrusWebSocket.sendRawFrame(ByteBuffer data) Send a frame to the remote endpoint.Deprecated.Deprecated.TyrusWebSocket.sendText(String fragment, boolean last, WriterInfo writerInfo) Sends a fragment of a complete message.TyrusWebSocket.sendText(String data, WriterInfo writerInfo) Send a text frame to the remote endpoint.ProtocolHandler.stream(boolean last, byte[] bytes, int off, int len) Deprecated.ProtocolHandler.stream(boolean last, byte[] bytes, int off, int len, WriterInfo writerInfo) Deprecated.ProtocolHandler.stream(boolean last, String fragment, WriterInfo writerInfo) Methods in org.glassfish.tyrus.core with parameters of type FrameModifier and TypeMethodDescriptionvoidProtocolHandler.process(Frame frame, TyrusWebSocket socket) TODO. -
Uses of Frame in org.glassfish.tyrus.core.extension
Methods in org.glassfish.tyrus.core.extension that return FrameModifier and TypeMethodDescriptionExtendedExtension.processIncoming(ExtendedExtension.ExtensionContext context, Frame frame) Process incoming frame.ExtendedExtension.processOutgoing(ExtendedExtension.ExtensionContext context, Frame frame) Process outgoing frame.Methods in org.glassfish.tyrus.core.extension with parameters of type FrameModifier and TypeMethodDescriptionExtendedExtension.processIncoming(ExtendedExtension.ExtensionContext context, Frame frame) Process incoming 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.frameModifier and TypeClassDescriptionclassBinary frame representation.classClose frame representation.classPing frame representation.classPong frame representation.classText frame representation.classFrame representation used in Tyrus runtime.Methods in org.glassfish.tyrus.core.frame that return FrameMethods in org.glassfish.tyrus.core.frame with parameters of type FrameModifier and TypeMethodDescriptionstatic Frame.BuilderCreate newFrame.Builderbased on provided frame.static TyrusFrameTyrusFrame.wrap(Frame frame, byte inFragmentedType, ByteBuffer remainder) TyrusFramefactory method.Constructors in org.glassfish.tyrus.core.frame with parameters of type FrameModifierConstructorDescriptionBinaryFrame(Frame frame) Constructor.BinaryFrame(Frame frame, boolean continuation) Constructor.Constructor.CloseFrame(Frame frame) Constructor.protectedCopy constructor.Constructor.Constructor.TextFrame(Frame frame, ByteBuffer remainder) Constructor.TextFrame(Frame frame, ByteBuffer remainder, boolean continuation) Constructor.protectedTyrusFrame(Frame frame, TyrusFrame.FrameType frameType) Constructor.