You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by re...@apache.org on 2022/04/17 11:52:30 UTC

[wicket] branch wicket-9.x updated: [WICKET-6969] javadoc + clean up

This is an automated email from the ASF dual-hosted git repository.

reiern70 pushed a commit to branch wicket-9.x
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/wicket-9.x by this push:
     new b844720202 [WICKET-6969] javadoc + clean up
b844720202 is described below

commit b8447202025eb4cc79c3c8920df6cbbf5e917d4e
Author: reiern70 <re...@gmail.com>
AuthorDate: Sun Apr 17 06:52:16 2022 -0500

    [WICKET-6969] javadoc + clean up
---
 .../apache/wicket/protocol/ws/api/AbstractWebSocketProcessor.java | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/AbstractWebSocketProcessor.java b/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/AbstractWebSocketProcessor.java
index cf7901c04d..f1654227e4 100644
--- a/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/AbstractWebSocketProcessor.java
+++ b/wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/AbstractWebSocketProcessor.java
@@ -81,7 +81,6 @@ public abstract class AbstractWebSocketProcessor implements IWebSocketProcessor
 	 * A pageId indicating that the endpoint is WebSocketResource
 	 */
 	static final int NO_PAGE_ID = -1;
-	static final String NO_PAGE_CLASS = "_NO_PAGE";
 
 	private final WebRequest webRequest;
 	private final int pageId;
@@ -224,6 +223,13 @@ public abstract class AbstractWebSocketProcessor implements IWebSocketProcessor
 	 *
 	 * @param message
 	 *      the message to broadcast
+     * @param connection
+     * 	    the {@link org.apache.wicket.protocol.ws.api.IWebSocketConnection}
+     * @param asynchronousPush
+     * 	    whether asynchronous pus is used or not
+     * @param timeout
+     * 	    The time ut to use for operation (in milliseconds). A negative value means use default timeout
+     * 	    (specified by container).
 	 */
 	public final void broadcastMessage(final IWebSocketMessage message, IWebSocketConnection connection, boolean asynchronousPush, long timeout)
 	{