This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
producer/communicator.py

44 lines
880 B
Python
Raw Normal View History

2020-03-29 15:46:00 +02:00
#!/usr/bin/env python
2020-03-29 16:26:16 +02:00
import requests
2020-03-29 15:46:00 +02:00
"""
Main Flask RESTful API
"""
__author__ = "@tormakris"
__copyright__ = "Copyright 2020, GoldenPogácsa Team"
__module_name__ = "messagesender"
2020-03-29 16:26:16 +02:00
__version__text__ = "1"
class Communicator:
"""
Class handling low level communication with consumers.
"""
def __init__(self):
"""
Initalize class
"""
pass
def sendmessage(self, message: str) -> None:
"""
Send message to consumer.
:param message:
:return: none
"""
pass
def discoveravailableconsumers(self) -> list:
"""
Get the list of available consumer from the current primary consumer.
:return:
"""
pass
def isconsumeravailable(self) -> bool:
"""
Readiness probe primary consumer.
:return:
"""
pass