com.vaadin.flow.shared.communication.
Class PushConstants
All Implemented Interfaces:
Shared constants used by push.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final char
The character used to mark message boundaries when messages may be split into multiple fragments.
static final int
The size, in bytes, of the receiving buffer used by some servers.
static final int
The maximum size, in characters, of a websocket message fragment.
-
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
WEBSOCKET_BUFFER_SIZE
public static final int WEBSOCKET_BUFFER_SIZEThe size, in bytes, of the receiving buffer used by some servers.
Should not be set to a value equal to or greater than 32768 due to a Jetty 9.1 issue (see #13087)
See Also:
-
WEBSOCKET_FRAGMENT_SIZE
public static final int WEBSOCKET_FRAGMENT_SIZEThe maximum size, in characters, of a websocket message fragment. This is a conservative maximum chosen so that the size in bytes will not exceed
WEBSOCKET_BUFFER_SIZE
given a UTF-8 encoded message.See Also:
-
MESSAGE_DELIMITER
public static final char MESSAGE_DELIMITERThe character used to mark message boundaries when messages may be split into multiple fragments.
See Also:
-
-
Constructor Details
-
PushConstants
public PushConstants()
-