Contact Us 1-800-596-4880

Mule Events

This version of Mule reached its End of Life on May 2, 2023, when Extended Support ended.

Deployments of new applications to CloudHub that use this version of Mule are no longer allowed. Only in-place updates to applications are permitted.

MuleSoft recommends that you upgrade to the latest version of Mule 4 that is in Standard Support so that your applications run with the latest fixes and security enhancements.

A Mule event contains the core information processed by the runtime. It travels through components inside your Mule app following the configured application logic.

Note that the Mule event is immutable, so every change to an instance of a Mule event results in the creation of a new instance.

A Mule Event is composed of these objects:

  • A Mule Message contains a message payload and its associated attributes.

  • Variables are Mule event metadata that you use in your flow.

mule concepts d46f9

A Mule event is generated when a trigger (such as an HTTP request or a change to a database or file) reaches the Event source of a flow. This trigger could be an external event triggered by a resource that might be external to the Mule app.

about mule event 2724e
  1. A trigger reaches the event source.

  2. The event source produces a Mule event.

  3. The Mule event travels sequentially through the components of a flow.

  4. Each component interacts in a pre-defined manner with the Mule event.