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, GetAnyReplicaOptions]
return_exceptions=None # type: Optional[bool]
)
Source from the content-addressed store, hash-verified
| 952 | """ # noqa: E501 |
| 953 | @overload |
| 954 | def __init__( |
| 955 | self, |
| 956 | timeout=None, # type: Optional[timedelta] |
| 957 | parent_span=None, # type: Optional[RequestSpan] |
| 958 | transcoder=None, # type: Optional[Transcoder] |
| 959 | read_preference=None, # type: Optional[ReadPreference] |
| 960 | per_key_options=None, # type: Dict[str, GetAnyReplicaOptions] |
| 961 | return_exceptions=None # type: Optional[bool] |
| 962 | ): |
| 963 | pass |
| 964 | |
| 965 | def __init__(self, **kwargs): |
| 966 | 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