Simply watches the existence of the lock file.
| 727 | |
| 728 | |
| 729 | class AsyncSoftFileLock(SoftFileLock, BaseAsyncFileLock): |
| 730 | """Simply watches the existence of the lock file.""" |
| 731 | |
| 732 | _lifetime_replacements: tuple[str, str] | None = ("AsyncStrictSoftFileLock", "AsyncSoftFileLease") |
| 733 | |
| 734 | |
| 735 | class AsyncStrictSoftFileLock(StrictSoftFileLock, BaseAsyncFileLock): |
no outgoing calls