beer-garden / beer-garden

The beer-garden application
https://beer-garden.io/
MIT License
256 stars 37 forks source link

Alternate request creation methods #184

Closed hazmat345 closed 3 years ago

hazmat345 commented 6 years ago

Right now the only way to create a request is through the REST api. This is a problem.

We need to structure the app better so that we can easily add new ways to create requests.

Then we need to add support for creating requests by listening to a message queue.

TheBurchLog commented 4 years ago

First candidate for Messaging Queue interface is STOMP. With the way we redesigned the Entry Point structure, this should be easier to integrate. We just have to trust the JMS Topic, and require all objects being sent to be in the Operation structure.

hazmat345 commented 3 years ago

This is now OBE. We have a STOMP entry point and the ability to create requests through it.