Scheduled maintenance on Saturday, 27 September 2025, from 07:00 AM to 4:00 PM GMT (09:00 AM to 6:00 PM CEST) - some services may be unavailable -

Skip to content
Snippets Groups Projects
Select Git revision
  • 2024Q4
  • main default protected
  • develop protected
  • 2025Q2 protected
  • 2025Q2_RC protected
  • feat/observability
  • feat/java-telemetry
  • feat/podannotations
  • helm-startup-changes
  • 2024Q4_RC protected
  • 2024Q2 protected
  • 2024Q2_RC protected
  • 22-create-a-test-process-to-automatically-install-configure-and-test-deployments-in-openslice
  • 2025Q2 protected
  • 2024Q2 protected
  • 0.0.0 protected
16 results

docker-compose.yaml.configure

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    MessageBroker.py 1.57 KiB
    # Copyright 2022-2025 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #      http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    import logging
    from typing import Iterator, Set
    from .backend._Backend import _Backend
    from .Constants import CONSUME_TIMEOUT
    from .Message import Message
    
    LOGGER = logging.getLogger(__name__)
    
    class MessageBroker:
        def __init__(self, backend : _Backend):
            if not isinstance(backend, _Backend):
                str_class_path = '{}.{}'.format(_Backend.__module__, _Backend.__name__)
                raise AttributeError('backend must inherit from {}'.format(str_class_path))
            self._backend = backend
    
        @property
        def backend(self) -> _Backend: return self._backend
    
        def publish(self, message : Message) -> None:
            self._backend.publish(message.topic, message.content)
    
        def consume(self, topic_names : Set[str], consume_timeout : float = CONSUME_TIMEOUT) -> Iterator[Message]:
            for pair in self._backend.consume(topic_names, consume_timeout=consume_timeout):
                yield Message(*pair)
    
        def terminate(self):
            self._backend.terminate()