Method
__init__
(
self,
timeout=None, # type: Optional[timedelta]
parent_span=None, # type: Optional[RequestSpan]
transcoder=None, # type: Optional[Transcoder]
read_preference=None, # type: Optional[ReadPreference]
per_key_options=None, # type: Dict[str, GetAllReplicasOptions]
return_exceptions=None # type: Optional[bool]
)
Source from the content-addressed store, hash-verified
| 912 | """ # noqa: E501 |
| 913 | @overload |
| 914 | def __init__( |
| 915 | self, |
| 916 | timeout=None, # type: Optional[timedelta] |
| 917 | parent_span=None, # type: Optional[RequestSpan] |
| 918 | transcoder=None, # type: Optional[Transcoder] |
| 919 | read_preference=None, # type: Optional[ReadPreference] |
| 920 | per_key_options=None, # type: Dict[str, GetAllReplicasOptions] |
| 921 | return_exceptions=None # type: Optional[bool] |
| 922 | ): |
| 923 | pass |
| 924 | |
| 925 | def __init__(self, **kwargs): |
| 926 | kwargs = {k: v for k, v in kwargs.items() if v is not None} |
Callers
nothing calls this directly
Tested by
no test coverage detected