Consider AsyncConnector
object for async interface
#687
Labels
priority: p2
Moderately-important priority. Fix may not be included in next release.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
Feature Description
Currently the
Connector
object is the main entrypoint for both synchronous and async driver implementations.The synchronous drivers are called via
connector.connect
while the async drivers viaconnector.connect_async
with the synchronous version basically just being a simple wrapper around the async method.This issue is to keep an eye on considering moving the async drivers to a separate object and entrypoint of
AsyncConnector
.This would allow for clear distinctions between the two and give flexibility in the interfaces moving forward.
Sample code
Alternatives Considered
No response
Additional Details
No response
The text was updated successfully, but these errors were encountered: