jetty.project
jetty.project copied to clipboard
Introduce locking for core HTTP `Session`
trafficstars
Jetty version(s) 12
Enhancement Description
Currently the way to use core HTTP org.eclipse.jetty.server.Session concurrently is to use synchronized around it.
This is not virtual threads friendly, so we should have a mechanism such as:
Session.locked(Runnable); orSession.getLock(); orSession.getAutoLock()