class AsyncConnectionEvents(engine_event.ConnectionEvents):
Undocumented
Class Method | _listen |
Undocumented |
Class Variable | _target_class_doc |
Undocumented |
Inherited from ConnectionEvents
:
Method | after_cursor_execute |
Intercept low-level cursor execute() events after execution. |
Method | after_execute |
Intercept high level execute() events after execute. |
Method | before_cursor_execute |
Intercept low-level cursor execute() events before execution, receiving the string SQL statement and DBAPI-specific parameter list to be invoked against a cursor. |
Method | before_execute |
Intercept high level execute() events, receiving uncompiled SQL constructs and other objects prior to rendering into SQL. |
Method | begin |
Intercept begin() events. |
Method | begin_twophase |
Intercept begin_twophase() events. |
Method | commit |
Intercept commit() events, as initiated by a .Transaction . |
Method | commit_twophase |
Intercept commit_twophase() events. |
Method | engine_connect |
Intercept the creation of a new _engine.Connection . |
Method | engine_disposed |
Intercept when the _engine.Engine.dispose method is called. |
Method | handle_error |
Intercept all exceptions processed by the _engine.Connection . |
Method | prepare_twophase |
Intercept prepare_twophase() events. |
Method | release_savepoint |
Intercept release_savepoint() events. |
Method | rollback |
Intercept rollback() events, as initiated by a .Transaction . |
Method | rollback_savepoint |
Intercept rollback_savepoint() events. |
Method | rollback_twophase |
Intercept rollback_twophase() events. |
Method | savepoint |
Intercept savepoint() events. |
Method | set_connection_execution_options |
Intercept when the _engine.Connection.execution_options method is called. |
Method | set_engine_execution_options |
Intercept when the _engine.Engine.execution_options method is called. |
Inherited from Events
(via ConnectionEvents
):
Class Method | _accept_with |
Undocumented |
Class Method | _clear |
Undocumented |
Class Method | _remove |
Undocumented |
Static Method | _set_dispatch |
Undocumented |