Additional counters and timers for WebSocket connections

This commit is contained in:
Chris Eager
2023-06-13 11:46:15 -05:00
committed by GitHub
parent e8f01be8ef
commit 128d709c99
4 changed files with 199 additions and 35 deletions

View File

@@ -4,10 +4,10 @@
*/
package org.whispersystems.websocket.session;
import org.whispersystems.websocket.WebSocketClient;
import java.util.LinkedList;
import java.util.List;
import javax.annotation.Nullable;
import org.whispersystems.websocket.WebSocketClient;
public class WebSocketSessionContext {
@@ -34,6 +34,7 @@ public class WebSocketSessionContext {
throw new IllegalArgumentException("No authenticated type for: " + clazz + ", we have: " + authenticated);
}
@Nullable
public Object getAuthenticated() {
return authenticated;
}