communicator interface done
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2020-03-29 16:26:16 +02:00
parent 1b95e08285
commit e6f4bbdcfe
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
2 changed files with 36 additions and 2 deletions

View File

@ -6,4 +6,4 @@ COPY . ./
RUN pip3 install --no-cache-dir -r requirements.txt
CMD ["python3" "app.py"]
CMD ["python3", "app.py"]

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python
import requests
"""
Main Flask RESTful API
"""
@ -8,3 +10,35 @@ __author__ = "@tormakris"
__copyright__ = "Copyright 2020, GoldenPogácsa Team"
__module_name__ = "messagesender"
__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