1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
"""SampleStateMask constants (DDS 1.4 ยง2.2.2.5.1.4). Use with `zerodds.ReadCondition` / `zerodds.QueryCondition`:: rc = zerodds.ReadCondition( zerodds.sample_state.ANY, zerodds.view_state.ANY, zerodds.instance_state.ALIVE, ) """ from __future__ import annotations from . import _core NOT_READ: int = _core.SAMPLE_STATE_NOT_READ READ: int = _core.SAMPLE_STATE_READ ANY: int = _core.SAMPLE_STATE_ANY __all__ = ["NOT_READ", "READ", "ANY"]