reiern70 commented on a change in pull request #479:
URL: https://github.com/apache/wicket/pull/479#discussion_r745323108
##########
File path:
wicket-native-websocket/wicket-native-websocket-core/src/main/java/org/apache/wicket/protocol/ws/api/registry/IWebSocketConnectionRegistry.java
##########
@@ -28,6 +28,18 @@
*/
public interface IWebSocketConnectionRegistry
{
+ /**
+ * Interface allowing to filter web-sockets connection. This could be
used for use cases like the
+ * following: you need to deliver messages to all page instances
satisfying certain conditions (e.g.
+ * they contain some progress reporting component).
+ */
+ interface IConnectionsFilter
+ {
+
+ boolean acceptConnection(String sessionId, IKey key);
Review comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]