├── .github └── workflows │ ├── api-functional-tests.yml │ └── integration-tests.yml ├── .gitignore ├── Api ├── AsyncEventRepositoryInterface.php └── Data │ ├── AsyncEventDisplayInterface.php │ ├── AsyncEventInterface.php │ └── AsyncEventSearchResultsInterface.php ├── Block └── Adminhtml │ └── Trace │ ├── Details │ ├── BackButton.php │ └── ReplayButton.php │ └── Tab │ ├── View.php │ └── View │ └── Info.php ├── Controller └── Adminhtml │ ├── Events │ ├── Index.php │ ├── MassDisable.php │ ├── MassEnable.php │ └── Replay.php │ └── Logs │ ├── Index.php │ └── Trace.php ├── Cron └── CleanSubscriberLog.php ├── Helper ├── Config.php ├── NotifierResult.php └── QueueMetadataInterface.php ├── LICENSE ├── Model ├── Adapter │ ├── BatchDataMapper │ │ └── AsyncEventLogMapper.php │ └── FieldMapper │ │ └── DynamicFieldMapper.php ├── AsyncEvent.php ├── AsyncEventCleanSubscriberLogs.php ├── AsyncEventLog.php ├── AsyncEventLogRepository.php ├── AsyncEventRepository.php ├── AsyncEventSearchResults.php ├── AsyncEventTriggerHandler.php ├── Config.php ├── Config │ ├── Converter.php │ ├── Reader.php │ └── SchemaLocator.php ├── Details.php ├── Indexer │ ├── AsyncEventDimensionProvider.php │ ├── AsyncEventScope.php │ ├── AsyncEventSubscriber.php │ ├── DataProvider │ │ └── AsyncEventSubscriberLogs.php │ ├── IndexStructure.php │ ├── LuceneSearch.php │ └── Mview │ │ └── Action.php ├── Resolver │ └── AsyncEvent.php ├── ResourceModel │ ├── AsyncEvent.php │ ├── AsyncEvent │ │ ├── Collection.php │ │ └── Grid │ │ │ └── Collection.php │ ├── AsyncEventLog.php │ └── AsyncEventLog │ │ ├── Collection.php │ │ └── Grid │ │ └── Collection.php └── RetryHandler.php ├── Plugin └── MapStringScopeToInt.php ├── README.md ├── Service └── AsyncEvent │ ├── AmqpPublisher.php │ ├── EventDispatcher.php │ ├── ExampleNotifier.php │ ├── HttpNotifier.php │ ├── NotifierFactory.php │ ├── NotifierFactoryInterface.php │ ├── NotifierInterface.php │ └── RetryManager.php ├── Test ├── Api │ └── AsyncEventRepositoryTest.php ├── Integration │ ├── EventRetryTest.php │ ├── FailoverTopologyTest.php │ └── TestConfig.php └── _files │ ├── ce.php │ └── http_async_events.php ├── Ui ├── Component │ └── Listing │ │ └── Columns │ │ ├── AsyncEventActions.php │ │ └── Status.php └── DataProvider │ └── AsyncEventsTrace.php ├── auth.json.sample ├── bitbucket-pipelines.yml ├── composer.json ├── composer.lock ├── docs ├── README.md ├── Webhooks.png ├── event_fan_out.png ├── failover_architecture.png ├── lucene_example_1.png ├── lucene_example_2.png ├── retry_limit_config.png ├── simple_model.png ├── trace.png └── webhook_fan_in.png ├── etc ├── acl.xml ├── adminhtml │ ├── menu.xml │ ├── routes.xml │ └── system.xml ├── async_events.xsd ├── communication.xml ├── config.xml ├── cron_groups.xml ├── crontab.xml ├── db_schema.xml ├── db_schema_whitelist.json ├── di.xml ├── indexer.xml ├── module.xml ├── mview.xml ├── queue_consumer.xml ├── queue_publisher.xml ├── queue_topology.xml └── webapi.xml ├── phpcs.sh ├── registration.php └── view ├── adminhtml ├── layout │ ├── async_events_events_index.xml │ ├── async_events_logs_index.xml │ └── async_events_logs_trace.xml ├── templates │ └── tab │ │ ├── view.phtml │ │ └── view │ │ └── info.phtml └── ui_component │ ├── async_events_events_listing.xml │ ├── async_events_logs_listing.xml │ └── async_events_logs_trace.xml └── base └── web └── template └── content └── json.html /.github/workflows/api-functional-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/.github/workflows/api-functional-tests.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/.github/workflows/integration-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/.gitignore -------------------------------------------------------------------------------- /Api/AsyncEventRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Api/AsyncEventRepositoryInterface.php -------------------------------------------------------------------------------- /Api/Data/AsyncEventDisplayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Api/Data/AsyncEventDisplayInterface.php -------------------------------------------------------------------------------- /Api/Data/AsyncEventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Api/Data/AsyncEventInterface.php -------------------------------------------------------------------------------- /Api/Data/AsyncEventSearchResultsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Api/Data/AsyncEventSearchResultsInterface.php -------------------------------------------------------------------------------- /Block/Adminhtml/Trace/Details/BackButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Block/Adminhtml/Trace/Details/BackButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/Trace/Details/ReplayButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Block/Adminhtml/Trace/Details/ReplayButton.php -------------------------------------------------------------------------------- /Block/Adminhtml/Trace/Tab/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Block/Adminhtml/Trace/Tab/View.php -------------------------------------------------------------------------------- /Block/Adminhtml/Trace/Tab/View/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Block/Adminhtml/Trace/Tab/View/Info.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Events/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Controller/Adminhtml/Events/Index.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Events/MassDisable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Controller/Adminhtml/Events/MassDisable.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Events/MassEnable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Controller/Adminhtml/Events/MassEnable.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Events/Replay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Controller/Adminhtml/Events/Replay.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Logs/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Controller/Adminhtml/Logs/Index.php -------------------------------------------------------------------------------- /Controller/Adminhtml/Logs/Trace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Controller/Adminhtml/Logs/Trace.php -------------------------------------------------------------------------------- /Cron/CleanSubscriberLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Cron/CleanSubscriberLog.php -------------------------------------------------------------------------------- /Helper/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Helper/Config.php -------------------------------------------------------------------------------- /Helper/NotifierResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Helper/NotifierResult.php -------------------------------------------------------------------------------- /Helper/QueueMetadataInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Helper/QueueMetadataInterface.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/Adapter/BatchDataMapper/AsyncEventLogMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Adapter/BatchDataMapper/AsyncEventLogMapper.php -------------------------------------------------------------------------------- /Model/Adapter/FieldMapper/DynamicFieldMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Adapter/FieldMapper/DynamicFieldMapper.php -------------------------------------------------------------------------------- /Model/AsyncEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/AsyncEvent.php -------------------------------------------------------------------------------- /Model/AsyncEventCleanSubscriberLogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/AsyncEventCleanSubscriberLogs.php -------------------------------------------------------------------------------- /Model/AsyncEventLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/AsyncEventLog.php -------------------------------------------------------------------------------- /Model/AsyncEventLogRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/AsyncEventLogRepository.php -------------------------------------------------------------------------------- /Model/AsyncEventRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/AsyncEventRepository.php -------------------------------------------------------------------------------- /Model/AsyncEventSearchResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/AsyncEventSearchResults.php -------------------------------------------------------------------------------- /Model/AsyncEventTriggerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/AsyncEventTriggerHandler.php -------------------------------------------------------------------------------- /Model/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Config.php -------------------------------------------------------------------------------- /Model/Config/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Config/Converter.php -------------------------------------------------------------------------------- /Model/Config/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Config/Reader.php -------------------------------------------------------------------------------- /Model/Config/SchemaLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Config/SchemaLocator.php -------------------------------------------------------------------------------- /Model/Details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Details.php -------------------------------------------------------------------------------- /Model/Indexer/AsyncEventDimensionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Indexer/AsyncEventDimensionProvider.php -------------------------------------------------------------------------------- /Model/Indexer/AsyncEventScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Indexer/AsyncEventScope.php -------------------------------------------------------------------------------- /Model/Indexer/AsyncEventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Indexer/AsyncEventSubscriber.php -------------------------------------------------------------------------------- /Model/Indexer/DataProvider/AsyncEventSubscriberLogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Indexer/DataProvider/AsyncEventSubscriberLogs.php -------------------------------------------------------------------------------- /Model/Indexer/IndexStructure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Indexer/IndexStructure.php -------------------------------------------------------------------------------- /Model/Indexer/LuceneSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Indexer/LuceneSearch.php -------------------------------------------------------------------------------- /Model/Indexer/Mview/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Indexer/Mview/Action.php -------------------------------------------------------------------------------- /Model/Resolver/AsyncEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/Resolver/AsyncEvent.php -------------------------------------------------------------------------------- /Model/ResourceModel/AsyncEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/ResourceModel/AsyncEvent.php -------------------------------------------------------------------------------- /Model/ResourceModel/AsyncEvent/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/ResourceModel/AsyncEvent/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/AsyncEvent/Grid/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/ResourceModel/AsyncEvent/Grid/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/AsyncEventLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/ResourceModel/AsyncEventLog.php -------------------------------------------------------------------------------- /Model/ResourceModel/AsyncEventLog/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/ResourceModel/AsyncEventLog/Collection.php -------------------------------------------------------------------------------- /Model/ResourceModel/AsyncEventLog/Grid/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/ResourceModel/AsyncEventLog/Grid/Collection.php -------------------------------------------------------------------------------- /Model/RetryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Model/RetryHandler.php -------------------------------------------------------------------------------- /Plugin/MapStringScopeToInt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Plugin/MapStringScopeToInt.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/README.md -------------------------------------------------------------------------------- /Service/AsyncEvent/AmqpPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Service/AsyncEvent/AmqpPublisher.php -------------------------------------------------------------------------------- /Service/AsyncEvent/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Service/AsyncEvent/EventDispatcher.php -------------------------------------------------------------------------------- /Service/AsyncEvent/ExampleNotifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Service/AsyncEvent/ExampleNotifier.php -------------------------------------------------------------------------------- /Service/AsyncEvent/HttpNotifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Service/AsyncEvent/HttpNotifier.php -------------------------------------------------------------------------------- /Service/AsyncEvent/NotifierFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Service/AsyncEvent/NotifierFactory.php -------------------------------------------------------------------------------- /Service/AsyncEvent/NotifierFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Service/AsyncEvent/NotifierFactoryInterface.php -------------------------------------------------------------------------------- /Service/AsyncEvent/NotifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Service/AsyncEvent/NotifierInterface.php -------------------------------------------------------------------------------- /Service/AsyncEvent/RetryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Service/AsyncEvent/RetryManager.php -------------------------------------------------------------------------------- /Test/Api/AsyncEventRepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Test/Api/AsyncEventRepositoryTest.php -------------------------------------------------------------------------------- /Test/Integration/EventRetryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Test/Integration/EventRetryTest.php -------------------------------------------------------------------------------- /Test/Integration/FailoverTopologyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Test/Integration/FailoverTopologyTest.php -------------------------------------------------------------------------------- /Test/Integration/TestConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Test/Integration/TestConfig.php -------------------------------------------------------------------------------- /Test/_files/ce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Test/_files/ce.php -------------------------------------------------------------------------------- /Test/_files/http_async_events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Test/_files/http_async_events.php -------------------------------------------------------------------------------- /Ui/Component/Listing/Columns/AsyncEventActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Ui/Component/Listing/Columns/AsyncEventActions.php -------------------------------------------------------------------------------- /Ui/Component/Listing/Columns/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Ui/Component/Listing/Columns/Status.php -------------------------------------------------------------------------------- /Ui/DataProvider/AsyncEventsTrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/Ui/DataProvider/AsyncEventsTrace.php -------------------------------------------------------------------------------- /auth.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/auth.json.sample -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/Webhooks.png -------------------------------------------------------------------------------- /docs/event_fan_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/event_fan_out.png -------------------------------------------------------------------------------- /docs/failover_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/failover_architecture.png -------------------------------------------------------------------------------- /docs/lucene_example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/lucene_example_1.png -------------------------------------------------------------------------------- /docs/lucene_example_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/lucene_example_2.png -------------------------------------------------------------------------------- /docs/retry_limit_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/retry_limit_config.png -------------------------------------------------------------------------------- /docs/simple_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/simple_model.png -------------------------------------------------------------------------------- /docs/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/trace.png -------------------------------------------------------------------------------- /docs/webhook_fan_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/docs/webhook_fan_in.png -------------------------------------------------------------------------------- /etc/acl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/acl.xml -------------------------------------------------------------------------------- /etc/adminhtml/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/adminhtml/menu.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/adminhtml/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/adminhtml/system.xml -------------------------------------------------------------------------------- /etc/async_events.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/async_events.xsd -------------------------------------------------------------------------------- /etc/communication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/communication.xml -------------------------------------------------------------------------------- /etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/config.xml -------------------------------------------------------------------------------- /etc/cron_groups.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/cron_groups.xml -------------------------------------------------------------------------------- /etc/crontab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/crontab.xml -------------------------------------------------------------------------------- /etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/db_schema.xml -------------------------------------------------------------------------------- /etc/db_schema_whitelist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/db_schema_whitelist.json -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/indexer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/indexer.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/module.xml -------------------------------------------------------------------------------- /etc/mview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/mview.xml -------------------------------------------------------------------------------- /etc/queue_consumer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/queue_consumer.xml -------------------------------------------------------------------------------- /etc/queue_publisher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/queue_publisher.xml -------------------------------------------------------------------------------- /etc/queue_topology.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/queue_topology.xml -------------------------------------------------------------------------------- /etc/webapi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/etc/webapi.xml -------------------------------------------------------------------------------- /phpcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/phpcs.sh -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/layout/async_events_events_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/view/adminhtml/layout/async_events_events_index.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/async_events_logs_index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/view/adminhtml/layout/async_events_logs_index.xml -------------------------------------------------------------------------------- /view/adminhtml/layout/async_events_logs_trace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/view/adminhtml/layout/async_events_logs_trace.xml -------------------------------------------------------------------------------- /view/adminhtml/templates/tab/view.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/view/adminhtml/templates/tab/view.phtml -------------------------------------------------------------------------------- /view/adminhtml/templates/tab/view/info.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/view/adminhtml/templates/tab/view/info.phtml -------------------------------------------------------------------------------- /view/adminhtml/ui_component/async_events_events_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/view/adminhtml/ui_component/async_events_events_listing.xml -------------------------------------------------------------------------------- /view/adminhtml/ui_component/async_events_logs_listing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/view/adminhtml/ui_component/async_events_logs_listing.xml -------------------------------------------------------------------------------- /view/adminhtml/ui_component/async_events_logs_trace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/view/adminhtml/ui_component/async_events_logs_trace.xml -------------------------------------------------------------------------------- /view/base/web/template/content/json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aligent/magento-async-events/HEAD/view/base/web/template/content/json.html --------------------------------------------------------------------------------