Event that will be fired before each command execution.
| 184 | |
| 185 | |
| 186 | class AfterConnectionReleasedEvent: |
| 187 | """ |
| 188 | Event that will be fired before each command execution. |
| 189 | """ |
| 190 | |
| 191 | def __init__(self, connection): |
| 192 | self._connection = connection |
| 193 | |
| 194 | @property |
| 195 | def connection(self): |
| 196 | return self._connection |
| 197 | |
| 198 | |
| 199 | class AsyncAfterConnectionReleasedEvent(AfterConnectionReleasedEvent): |