Skip to content

Event handler

The event handler can subscribe and handle events in Lime CRM. It is possible to publish events from any service.

Core events

Lime CRM contains core events for all LimeTypes for all lifecycle events; new, update, delete and restore

They are published to core.lime.[limetype].[event] routing key

Configuration

Connection to RabbitMQ can be configured as described here

Configuration of the service is set as:

# config.yaml
event_handler: 
    catch_handler_exceptions: False

catch_handler_exceptions sets how the handler should react to any uncaught exception.

Back to top