Return the session to the sync pool.
(session any)
| 178 | |
| 179 | // Return the session to the sync pool. |
| 180 | func (s *Server) returnSession(session any) { |
| 181 | s.sessions.Put(session) |
| 182 | } |
| 183 | |
| 184 | // Mux returns the underlying http.ServeMux. |
| 185 | // This is primarily intended for testing and advanced usage scenarios. |