commit3
43
distributed-computing.sln
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.5.002.0
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tasks", "tasks", "{2B6E26D7-A7B8-4D54-BBF4-015BA705E56A}"
|
||||||
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "moiseev-vv", "moiseev-vv", "{965B8A87-9BDC-4BCD-AFDB-3E44E4A74787}"
|
||||||
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lab_2", "lab_2", "{9A3A59F9-8935-453F-A787-C01D0050EEC3}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "worker-1", "tasks\moiseev-vv\lab_2\worker-1\worker-1.csproj", "{BEA0DAB8-B17C-45E3-9381-6B9AC6501137}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "worker-2", "tasks\moiseev-vv\lab_2\worker-2\worker-2.csproj", "{31367C2B-C332-48BF-A72F-B9C382EAF53B}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{BEA0DAB8-B17C-45E3-9381-6B9AC6501137}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{BEA0DAB8-B17C-45E3-9381-6B9AC6501137}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{BEA0DAB8-B17C-45E3-9381-6B9AC6501137}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{BEA0DAB8-B17C-45E3-9381-6B9AC6501137}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{31367C2B-C332-48BF-A72F-B9C382EAF53B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{31367C2B-C332-48BF-A72F-B9C382EAF53B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{31367C2B-C332-48BF-A72F-B9C382EAF53B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{31367C2B-C332-48BF-A72F-B9C382EAF53B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(NestedProjects) = preSolution
|
||||||
|
{965B8A87-9BDC-4BCD-AFDB-3E44E4A74787} = {2B6E26D7-A7B8-4D54-BBF4-015BA705E56A}
|
||||||
|
{9A3A59F9-8935-453F-A787-C01D0050EEC3} = {965B8A87-9BDC-4BCD-AFDB-3E44E4A74787}
|
||||||
|
{BEA0DAB8-B17C-45E3-9381-6B9AC6501137} = {9A3A59F9-8935-453F-A787-C01D0050EEC3}
|
||||||
|
{31367C2B-C332-48BF-A72F-B9C382EAF53B} = {9A3A59F9-8935-453F-A787-C01D0050EEC3}
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {158B89FF-64DF-43B9-8F23-E937532CE338}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
20
tasks/dunaev-oi/MainTask/Consumer_1.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import pika
|
||||||
|
import time
|
||||||
|
|
||||||
|
def process_message(ch, method, properties, body):
|
||||||
|
print(f"Получено сообщение: {body}")
|
||||||
|
time.sleep(3)
|
||||||
|
print("Сообщение успешно обработано")
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
result = channel.queue_declare(queue='', exclusive=True)
|
||||||
|
queue_name = result.method.queue
|
||||||
|
|
||||||
|
channel.queue_bind(exchange='Agreements', queue=queue_name)
|
||||||
|
|
||||||
|
channel.basic_consume(queue=queue_name, on_message_callback=process_message, auto_ack=True)
|
||||||
|
|
||||||
|
print('Ожидание сообщений...')
|
||||||
|
channel.start_consuming()
|
19
tasks/dunaev-oi/MainTask/Consumer_2.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import pika
|
||||||
|
|
||||||
|
|
||||||
|
def process_message(ch, method, properties, body):
|
||||||
|
print(f"Получено сообщение: {body}")
|
||||||
|
print("Сообщение успешно обработано")
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
result = channel.queue_declare(queue='', exclusive=True)
|
||||||
|
queue_name = result.method.queue
|
||||||
|
|
||||||
|
channel.queue_bind(exchange='Agreements', queue=queue_name)
|
||||||
|
|
||||||
|
channel.basic_consume(queue=queue_name, on_message_callback=process_message, auto_ack=True)
|
||||||
|
|
||||||
|
print('Ожидание сообщений...')
|
||||||
|
channel.start_consuming()
|
19
tasks/dunaev-oi/MainTask/Publisher.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import pika
|
||||||
|
import time
|
||||||
|
import random
|
||||||
|
|
||||||
|
collection = ["Application for Travel Agency", "Buying tickets", "Execution of the agreement", "Check-into a hotel"]
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
channel.exchange_declare(exchange='Agreements', exchange_type='fanout')
|
||||||
|
|
||||||
|
while True:
|
||||||
|
message = f"Message: {random.choice(collection)}"
|
||||||
|
|
||||||
|
channel.basic_publish(exchange='Agreements', routing_key='', body=message)
|
||||||
|
|
||||||
|
time.sleep(1)
|
||||||
|
|
||||||
|
connection.close()
|
160
tasks/dunaev-oi/Python.gitignore
Normal file
@ -0,0 +1,160 @@
|
|||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
share/python-wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
cover/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
.pybuilder/
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
# For a library or package, you might want to ignore these files since the code is
|
||||||
|
# intended to run in multiple environments; otherwise, check them in:
|
||||||
|
# .python-version
|
||||||
|
|
||||||
|
# pipenv
|
||||||
|
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||||
|
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||||
|
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||||
|
# install all needed dependencies.
|
||||||
|
#Pipfile.lock
|
||||||
|
|
||||||
|
# poetry
|
||||||
|
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||||
|
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||||
|
# commonly ignored for libraries.
|
||||||
|
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
||||||
|
#poetry.lock
|
||||||
|
|
||||||
|
# pdm
|
||||||
|
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
||||||
|
#pdm.lock
|
||||||
|
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
||||||
|
# in version control.
|
||||||
|
# https://pdm.fming.dev/#use-with-ide
|
||||||
|
.pdm.toml
|
||||||
|
|
||||||
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||||
|
__pypackages__/
|
||||||
|
|
||||||
|
# Celery stuff
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# pytype static type analyzer
|
||||||
|
.pytype/
|
||||||
|
|
||||||
|
# Cython debug symbols
|
||||||
|
cython_debug/
|
||||||
|
|
||||||
|
# PyCharm
|
||||||
|
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||||
|
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||||
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
|
#.idea/
|
116
tasks/dunaev-oi/README.md
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
# Отчет по лабораторной работе №4
|
||||||
|
|
||||||
|
Выполнил студент гр. ИСЭбд-41 Дунаев О.И.
|
||||||
|
|
||||||
|
## Прохождение tutorial
|
||||||
|
|
||||||
|
Установил rabbitMQ server, erlang и зашел в брокер под гостем по http://localhost:15672/#/
|
||||||
|
|
||||||
|
Туториал 1:
|
||||||
|
|
||||||
|
![](scrins/tut1.png)
|
||||||
|
![](scrins/send.png)
|
||||||
|
![](scrins/receive.png)
|
||||||
|
Туториал 2:
|
||||||
|
|
||||||
|
![](scrins/tut2.png)
|
||||||
|
![](scrins/newtask.png)
|
||||||
|
![](scrins/worker.png)
|
||||||
|
|
||||||
|
Туториал 3:
|
||||||
|
|
||||||
|
![](scrins/tut3.png)
|
||||||
|
![](scrins/emitlog.png)
|
||||||
|
![](scrins/receivelogs.png)
|
||||||
|
|
||||||
|
## Разработка демонстрационных приложений
|
||||||
|
|
||||||
|
Предметная область: Дополенительные соглашения и договора на заселение в отель Туристического агентства.
|
||||||
|
Разработа три приложения согласно предметной области.
|
||||||
|
|
||||||
|
1. Publisher
|
||||||
|
|
||||||
|
```py
|
||||||
|
import pika
|
||||||
|
import time
|
||||||
|
import random
|
||||||
|
|
||||||
|
collection = ["Application for Travel Agency", "Buying tickets", "Execution of the agreement", "Check-into a hotel"]
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
channel.exchange_declare(exchange='Agreements', exchange_type='fanout')
|
||||||
|
|
||||||
|
while True:
|
||||||
|
message = f"Message: {random.choice(collection)}"
|
||||||
|
|
||||||
|
channel.basic_publish(exchange='Agreements', routing_key='', body=message)
|
||||||
|
|
||||||
|
time.sleep(1)
|
||||||
|
|
||||||
|
connection.close()
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Consumer 1.
|
||||||
|
|
||||||
|
```py
|
||||||
|
import pika
|
||||||
|
import time
|
||||||
|
|
||||||
|
def process_message(ch, method, properties, body):
|
||||||
|
print(f"Получено сообщение: {body}")
|
||||||
|
time.sleep(3)
|
||||||
|
print("Сообщение успешно обработано")
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
result = channel.queue_declare(queue='', exclusive=True)
|
||||||
|
queue_name = result.method.queue
|
||||||
|
|
||||||
|
channel.queue_bind(exchange='Agreements', queue=queue_name)
|
||||||
|
|
||||||
|
channel.basic_consume(queue=queue_name, on_message_callback=process_message, auto_ack=True)
|
||||||
|
|
||||||
|
print('Ожидание сообщений...')
|
||||||
|
channel.start_consuming()
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Consumer 2.
|
||||||
|
|
||||||
|
```py
|
||||||
|
import pika
|
||||||
|
|
||||||
|
|
||||||
|
def process_message(ch, method, properties, body):
|
||||||
|
print(f"Получено сообщение: {body}")
|
||||||
|
print("Сообщение успешно обработано")
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
result = channel.queue_declare(queue='', exclusive=True)
|
||||||
|
queue_name = result.method.queue
|
||||||
|
|
||||||
|
channel.queue_bind(exchange='Agreements', queue=queue_name)
|
||||||
|
|
||||||
|
channel.basic_consume(queue=queue_name, on_message_callback=process_message, auto_ack=True)
|
||||||
|
|
||||||
|
print('Ожидание сообщений...')
|
||||||
|
channel.start_consuming()
|
||||||
|
```
|
||||||
|
|
||||||
|
## Результаты выполнения лабораторной работы
|
||||||
|
|
||||||
|
Результат отработки Consumer_1:
|
||||||
|
|
||||||
|
![](scrins/maintask1.png)
|
||||||
|
|
||||||
|
Результат отработки Consumer_2:
|
||||||
|
|
||||||
|
![](scrins/maintask2.png)
|
||||||
|
|
||||||
|
![](scrins/maintask_dop.png)
|
||||||
|
|
||||||
|
Вывод: Consumer_2 нагружает меньше памяти, чем Consumer_1 и принимает сообщения гораздо быстрее, тем самым не позволяя очереди накапливать огромное количество сообщений.
|
25
tasks/dunaev-oi/Tut1/receive.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import pika, sys, os
|
||||||
|
|
||||||
|
def main():
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
channel.queue_declare(queue='DunaevLogs')
|
||||||
|
|
||||||
|
def callback(ch, method, properties, body):
|
||||||
|
print(f" [x] Получено сообщение: {body}")
|
||||||
|
|
||||||
|
channel.basic_consume(queue='DunaevLogs', on_message_callback=callback, auto_ack=True)
|
||||||
|
|
||||||
|
print(' [*] Ожидание сообщений. Для завершения CTRL+C')
|
||||||
|
channel.start_consuming()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
try:
|
||||||
|
main()
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print('Произошла ошибка')
|
||||||
|
try:
|
||||||
|
sys.exit(0)
|
||||||
|
except SystemExit:
|
||||||
|
os._exit(0)
|
11
tasks/dunaev-oi/Tut1/send.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import pika
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
channel.queue_declare(queue='dunaev')
|
||||||
|
|
||||||
|
channel.basic_publish(exchange='',routing_key='dunaev',body='Hello, my name is Oleg, i am from ISEbd-41!')
|
||||||
|
print(" [x] Отправлено сообщение")
|
||||||
|
|
||||||
|
connection.close()
|
13
tasks/dunaev-oi/Tut2/new_task.py
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import pika
|
||||||
|
import sys
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
channel.queue_declare(queue='dunaev2', durable=True)
|
||||||
|
|
||||||
|
message = ' '.join(sys.argv[1:]) or "Hello, my name is Oleg, i am from ISEbd-41!"
|
||||||
|
channel.basic_publish(exchange='', routing_key='dunaev2', body=message, properties=pika.BasicProperties(
|
||||||
|
delivery_mode=pika.spec.PERSISTENT_DELIVERY_MODE))
|
||||||
|
print(f" [x] Отправлено {message}")
|
||||||
|
connection.close()
|
19
tasks/dunaev-oi/Tut2/worker.py
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import pika
|
||||||
|
import time
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
channel.queue_declare(queue='dunaev2', durable=True)
|
||||||
|
print(' [*] Ожидание сообщений.')
|
||||||
|
|
||||||
|
def callback(ch, method, properties, body):
|
||||||
|
print(f" [x] Получено сообщение: {body.decode()}")
|
||||||
|
time.sleep(body.count(b'.'))
|
||||||
|
print(" [x] Выполнено")
|
||||||
|
ch.basic_ack(delivery_tag=method.delivery_tag)
|
||||||
|
|
||||||
|
channel.basic_qos(prefetch_count=1)
|
||||||
|
channel.basic_consume(queue='dunaev2', on_message_callback=callback)
|
||||||
|
|
||||||
|
channel.start_consuming()
|
12
tasks/dunaev-oi/Tut3/emit_log.py
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import pika
|
||||||
|
import sys
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
channel.exchange_declare(exchange='DunaevLogs', exchange_type='fanout')
|
||||||
|
|
||||||
|
message = ' '.join(sys.argv[1:]) or "Info: Hello, my name is Oleg, i am from ISEbd-41!"
|
||||||
|
channel.basic_publish(exchange='DunaevLogs', routing_key='', body=message)
|
||||||
|
print(f" [x] Отправлено сообщение: {message}")
|
||||||
|
connection.close()
|
21
tasks/dunaev-oi/Tut3/receive_logs.py
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
import pika
|
||||||
|
|
||||||
|
connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
|
||||||
|
channel = connection.channel()
|
||||||
|
|
||||||
|
channel.exchange_declare(exchange='DunaevLogs', exchange_type='fanout')
|
||||||
|
|
||||||
|
result = channel.queue_declare(queue='', exclusive=True)
|
||||||
|
queue_name = result.method.queue
|
||||||
|
|
||||||
|
channel.queue_bind(exchange='DunaevLogs', queue=queue_name)
|
||||||
|
|
||||||
|
print(' [*] Ожидание сообщений. Для завершения CTRL+C')
|
||||||
|
|
||||||
|
def callback(ch, method, properties, body):
|
||||||
|
print(f" [x] {body}")
|
||||||
|
|
||||||
|
channel.basic_consume(
|
||||||
|
queue=queue_name, on_message_callback=callback, auto_ack=True)
|
||||||
|
|
||||||
|
channel.start_consuming()
|
BIN
tasks/dunaev-oi/scrins/emitlog.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
tasks/dunaev-oi/scrins/maintask1.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
tasks/dunaev-oi/scrins/maintask2.png
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
tasks/dunaev-oi/scrins/maintask_dop.png
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
tasks/dunaev-oi/scrins/newtask.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
tasks/dunaev-oi/scrins/receive.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
tasks/dunaev-oi/scrins/receivelogs.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
tasks/dunaev-oi/scrins/send.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
tasks/dunaev-oi/scrins/tut1.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
tasks/dunaev-oi/scrins/tut2.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
tasks/dunaev-oi/scrins/tut3.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
tasks/dunaev-oi/scrins/worker.png
Normal file
After Width: | Height: | Size: 42 KiB |