diff --git a/monkey/common/event_queue/event_queue.py b/monkey/common/event_queue/pypubsub_event_queue.py similarity index 96% rename from monkey/common/event_queue/event_queue.py rename to monkey/common/event_queue/pypubsub_event_queue.py index a26ada222..97b4e71dc 100644 --- a/monkey/common/event_queue/event_queue.py +++ b/monkey/common/event_queue/pypubsub_event_queue.py @@ -7,7 +7,7 @@ from common.events import AbstractEvent from .i_event_queue import IEventQueue -class EventQueue(IEventQueue): +class PyPubSubEventQueue(IEventQueue): @staticmethod def subscribe_all(subscriber: Callable[..., Any]): pub.subscribe(listener=subscriber, topicName=pub.ALL_TOPICS)