# Scheduling

[Previously, you learned about the power of Webhooks and HTTP requests](/kb/appmixer-studio-features/utility-modules/http.md). In this section, we'll show you a simple yet effective way to implement Scheduling features into your flows.

Imagine we want to get a daily notification based on the current weather. In the flow below, we look at cloudiness and, based on the current weather, send either a "Cloudy" or "Sunny" email.

![Using the "Timer" component in a flow](/files/-MfXm8DpL52411Jz-zGi)

Notice how we've used the "Timer" component (named "Every day" and located at the beginning of the flow) to run the flow every 24 hours (1440 minutes).

{% hint style="info" %}
Note that you could as well use the Scheduler component which provides a more flexible configuration when it comes to scheduling. The Scheduler component uses the cron syntax. Learn more here: <https://en.wikipedia.org/wiki/Cron>
{% endhint %}

You may have noticed, we used the "Timers" module that consist of three components: Scheduler, Timer and Wait.

![Scheduler, Timer and Wait components](/files/-MfXmtAa20UYxlmWE1ne)

Here is a simple explanation of each of the "Timers" components.

{% tabs %}
{% tab title="Timers component" %}
**Scheduler**\
This trigger schedules jobs to run periodically at fixed times, dates, or intervals using the [cron syntax](https://www.netiq.com/documentation/cloud-manager-2-5/ncm-reference/data/bexyssf.html).

**Timer**\
This trigger fires at the frequency provided by the interval configuration property. First message is sent to output when flow is started, this message does not have lastTick' and 'elapsed' property set.

**Wait**\
This component receives a message and waits for provided time (interval) to send original message to output port.
{% endtab %}
{% endtabs %}

{% hint style="info" %}
Keep in mind that you can customise all components and also implement your own using NodeJS and upload them to the Appmixer engine via the API to suit your specific business needs.
{% endhint %}

Having learned the basics about the Scheduling feature, [let's look at another great tool, Forms](/kb/appmixer-studio-features/utility-modules/forms.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.appmixer.com/kb/appmixer-studio-features/utility-modules/scheduling.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
