@@ -73,6 +73,7 @@ async def __aexit__(self, exc_type, exc_value, traceback):
7373
7474
7575@CrossSync .convert_class
76+ # Experimental API - Please note that this API is currently experimental and can change in the future.
7677class AbstractSessionPool (object ):
7778 """Specifies required API for concrete session pool implementations.
7879
@@ -209,6 +210,7 @@ def session(self, **kwargs):
209210
210211
211212@CrossSync .convert_class
213+ # Experimental API - Please note that this API is currently experimental and can change in the future.
212214class FixedSizePool (AbstractSessionPool ):
213215 """Concrete session pool implementation:
214216
@@ -475,6 +477,7 @@ async def clear(self):
475477
476478
477479@CrossSync .convert_class
480+ # Experimental API - Please note that this API is currently experimental and can change in the future.
478481class BurstyPool (AbstractSessionPool ):
479482 """Concrete session pool implementation:
480483
@@ -586,6 +589,7 @@ async def clear(self):
586589
587590
588591@CrossSync .convert_class
592+ # Experimental API - Please note that this API is currently experimental and can change in the future.
589593class PingingPool (FixedSizePool ):
590594 """Concrete session pool implementation:
591595
@@ -835,6 +839,7 @@ async def ping(self):
835839
836840
837841@CrossSync .convert_class
842+ # Experimental API - Please note that this API is currently experimental and can change in the future.
838843class TransactionPingingPool (PingingPool ):
839844 """Concrete session pool implementation:
840845
0 commit comments