return self._proxied.info
@classmethod
- async def close_all(self) -> None:
+ async def close_all(cls) -> None:
r"""Close all :class:`_asyncio.AsyncSession` sessions.
.. container:: class_bases
Proxied for the :class:`_asyncio.AsyncSession` class on
behalf of the :class:`_asyncio.scoping.async_scoped_session` class.
+ .. deprecated:: 2.0 The :meth:`.AsyncSession.close_all` method is deprecated and will be removed in a future release. Please refer to :func:`.session.close_all_sessions`.
+
+
""" # noqa: E501
return await AsyncSession.close_all()
@classmethod
async def close_all(cls) -> None:
- """Close all :class:`_asyncio.AsyncSession` sessions."""
+ """Close all :class:`_asyncio.AsyncSession` sessions.
+
+ .. deprecated:: 2.0 The :meth:`.AsyncSession.close_all` method is deprecated and will be removed in a future release. Please refer to :func:`.session.close_all_sessions`.
+
+ """ # noqa: E501
await greenlet_spawn(close_all_sessions)
async def __aenter__(self: _AS) -> _AS: