# Automation and Scheduling

## Headless Client

### Overview

A headless client is a server-side client session that operates without an interface (UI), allowing you to automate tasks that do not require interaction from end-users. It can be configured to have a logged-in user account and perform long-running or background tasks, making it essential for server-side operations that don't need real-time interaction.

The Servoy Headless Client cannot be started by users directly, but need to be instantiated through code.

From within a Servoy solution this can be done through the [Headless Client plugin](/reference/servoyextensions/server-plugins/headlessclient.md#headlessclient), otherwise Headless Clients can be instantiated through the Servoy Public API in JSP pages for example.

### Use Cases

* **Automating background processes**: Useful for backend operations like data processing, reporting, or server-side jobs.
* **Running long-duration tasks**: Ideal for processes that take significant time and don't need real-time interaction.
* **Parallelized workloads**: By spawning multiple headless clients, you can handle several tasks in parallel, improving processing efficiency.

### Approaches

There are three main approaches to automating tasks using the headless client:

* [Batch Processor](/guides/develop/programming-guide/automation-and-scheduling/batch-processor.md#overview): Best for tasks that start automatically when the server is launched.
* [Headless API](/guides/develop/programming-guide/automation-and-scheduling/headless-api.md#overview): Allows starting and managing headless clients from within another session.
* [Scheduler API](/guides/develop/programming-guide/automation-and-scheduling/scheduler-api.md#overview): Provides the ability to schedule tasks at specific times or intervals.


---

# 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.servoy.com/guides/develop/programming-guide/automation-and-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.
