Source code for ska_sdp_config.operations.execution_block
"""
Execution Block management for SDP Configuration Database.
"""
from ..entity import ExecutionBlock
from .entity_operations import CollectiveEntityOperations
# pylint: disable=too-few-public-methods
[docs]
class ExecutionBlockOperations(CollectiveEntityOperations):
"""Database operations related to resource allocation management."""
PREFIX = "/eb"
MODEL_CLASS = ExecutionBlock
HAS_STATE = True