Merge remote-tracking branch 'origin/master'

This commit is contained in:
Kovács Bence János 2020-03-29 16:29:27 +02:00
commit bc079ac609
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 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 #!/usr/bin/env python
import requests
""" """
Main Flask RESTful API Main Flask RESTful API
""" """
@ -7,4 +9,36 @@ Main Flask RESTful API
__author__ = "@tormakris" __author__ = "@tormakris"
__copyright__ = "Copyright 2020, GoldenPogácsa Team" __copyright__ = "Copyright 2020, GoldenPogácsa Team"
__module_name__ = "messagesender" __module_name__ = "messagesender"
__version__text__ = "1" __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