forked from facebookincubator/ft_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
synchronization.pyi
39 lines (34 loc) · 1.26 KB
/
synchronization.pyi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright (c) Meta Platforms, Inc. and affiliates.
from types import TracebackType
from typing import Optional, Type, Union
class IntervalLock:
def __init__(self, interval: float = 0.005) -> None: ...
def lock(self) -> None: ...
def unlock(self) -> None: ...
def poll(self) -> None: ...
def cede(self) -> None: ...
def locked(self) -> bool: ...
def __enter__(self) -> "IntervalLock": ...
def __exit__(
self, *args: Optional[Union[Type[BaseException], Exception, TracebackType]]
) -> None: ...
class RWLock:
def lock_read(self) -> None: ...
def unlock_read(self) -> None: ...
def lock_write(self) -> None: ...
def unlock_write(self) -> None: ...
def readers(self) -> int: ...
def writer_waiting(self) -> bool: ...
def writer_locked(self) -> bool: ...
class RWReadContext:
def __init__(self, lock: RWLock) -> None: ...
def __enter__(self) -> None: ...
def __exit__(
self, *args: Optional[Union[Type[BaseException], Exception, TracebackType]]
) -> bool: ...
class RWWriteContext:
def __init__(self, lock: RWLock) -> None: ...
def __enter__(self) -> None: ...
def __exit__(
self, *args: Optional[Union[Type[BaseException], Exception, TracebackType]]
) -> bool: ...