6271d5d544
The change adds a new column to the MESSAGE_QUEUE table called AUDIT_RELATED_ID. This field is populated transparently, using a dictionary mapping Thread IDs to Message IDs, populated by the inbox handlers. The existing RELATED_ID field has too many semantics associated with them, among other things the FSM code uses them this field in tracking state changes. The change set also improves the consistency of inbox names. The IndexClient was buggy and populated its outbox with a UUID. This is fixed. All Service2Service outboxes are now prefixed with 'pp:' to make them even easier to differentiate. |
||
---|---|---|
.. | ||
assistant-api | ||
executor-api | ||
index-api | ||
process-mqapi | ||
query-api | ||
readme.md |
Clients
Core Services
These are clients for the core services, along with what models are necessary for speaking to them. They each implement the abstract client classes from service-client.
All that is necessary is to @Inject
them into the constructor and then
requests can be sent.
Note: If you are looking for the public API, it's handled by the api service in services-application/api-service.
MQ-API Process API
process-mqapi defines requests and inboxes for the message queue based API used for interacting with processes.
See libraries/message-queue and services-application/control-service.