It will handle that just fine, even to millions of websocket connections if you have enough memory.
Each incoming websocket message is treated as it's own thread task (similar to each HTTP request).
For websockets, each connection has a message queue so you'll only ever be processing one event from a websocket connection at a time.