class AsyncSessionEvents(orm_event.SessionEvents):
Undocumented
Class Method | _listen |
Undocumented |
Class Variable | _target_class_doc |
Undocumented |
Inherited from SessionEvents
:
Class Method | _accept_with |
Undocumented |
Method | _lifecycle_event |
Undocumented |
Method | after_attach |
Execute after an instance is attached to a session. |
Method | after_begin |
Execute after a transaction is begun on a connection |
Method | after_bulk_delete |
Execute after ORM DELETE against a WHERE expression has been invoked. |
Method | after_bulk_update |
Execute after an ORM UPDATE against a WHERE expression has been invoked. |
Method | after_commit |
Execute after a commit has occurred. |
Method | after_flush |
Execute after flush has completed, but before commit has been called. |
Method | after_flush_postexec |
Execute after flush has completed, and after the post-exec state occurs. |
Method | after_rollback |
Execute after a real DBAPI rollback has occurred. |
Method | after_soft_rollback |
Execute after any rollback has occurred, including "soft" rollbacks that don't actually emit at the DBAPI level. |
Method | after_transaction_create |
Execute when a new .SessionTransaction is created. |
Method | after_transaction_end |
Execute when the span of a .SessionTransaction ends. |
Method | before_attach |
Execute before an instance is attached to a session. |
Method | before_commit |
Execute before commit is called. |
Method | before_flush |
Execute before flush process has started. |
Method | deleted_to_detached |
Intercept the "deleted to detached" transition for a specific object. |
Method | deleted_to_persistent |
Intercept the "deleted to persistent" transition for a specific object. |
Method | detached_to_persistent |
Intercept the "detached to persistent" transition for a specific object. |
Method | do_orm_execute |
Intercept statement executions that occur in terms of a .Session . |
Method | loaded_as_persistent |
Intercept the "loaded as persistent" transition for a specific object. |
Method | pending_to_persistent |
Intercept the "pending to persistent"" transition for a specific object. |
Method | pending_to_transient |
Intercept the "pending to transient" transition for a specific object. |
Method | persistent_to_deleted |
Intercept the "persistent to deleted" transition for a specific object. |
Method | persistent_to_detached |
Intercept the "persistent to detached" transition for a specific object. |
Method | persistent_to_transient |
Intercept the "persistent to transient" transition for a specific object. |
Method | transient_to_pending |
Intercept the "transient to pending" transition for a specific object. |
Inherited from Events
(via SessionEvents
):
Class Method | _clear |
Undocumented |
Class Method | _remove |
Undocumented |
Static Method | _set_dispatch |
Undocumented |