MCPcopy
hub / github.com/redis/redis-py / AfterConnectionReleasedEvent

Class AfterConnectionReleasedEvent

redis/event.py:186–196  ·  view source on GitHub ↗

Event that will be fired before each command execution.

Source from the content-addressed store, hash-verified

184
185
186class 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
199class AsyncAfterConnectionReleasedEvent(AfterConnectionReleasedEvent):

Callers 1

releaseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected