(
self: SyncClientProtocol,
name: KeyT,
cursor: int = 0,
match: PatternT | None = None,
count: int | None = None,
)
| 5998 | |
| 5999 | @overload |
| 6000 | def sscan( |
| 6001 | self: SyncClientProtocol, |
| 6002 | name: KeyT, |
| 6003 | cursor: int = 0, |
| 6004 | match: PatternT | None = None, |
| 6005 | count: int | None = None, |
| 6006 | ) -> ScanResponse: ... |
| 6007 | |
| 6008 | @overload |
| 6009 | def sscan( |