zerodds-py 1.0.0-rc.3

PyO3 bindings for the ZeroDDS DCPS API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
"""InstanceStateMask constants (DDS 1.4 ยง2.2.2.5.1.4)."""
from __future__ import annotations

from . import _core

ALIVE: int = _core.INSTANCE_STATE_ALIVE
NOT_ALIVE_DISPOSED: int = _core.INSTANCE_STATE_NOT_ALIVE_DISPOSED
NOT_ALIVE_NO_WRITERS: int = _core.INSTANCE_STATE_NOT_ALIVE_NO_WRITERS
NOT_ALIVE: int = _core.INSTANCE_STATE_NOT_ALIVE
ANY: int = _core.INSTANCE_STATE_ANY

__all__ = ["ALIVE", "NOT_ALIVE_DISPOSED", "NOT_ALIVE_NO_WRITERS", "NOT_ALIVE", "ANY"]