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
"""ViewStateMask constants (DDS 1.4 ยง2.2.2.5.1.4)."""
from __future__ import annotations

from . import _core

NEW: int = _core.VIEW_STATE_NEW
NOT_NEW: int = _core.VIEW_STATE_NOT_NEW
ANY: int = _core.VIEW_STATE_ANY

__all__ = ["NEW", "NOT_NEW", "ANY"]