# SchedulerStart

Create, register and start a scheduler with the given instantiation class path.

The className would be the same as instantiang the class via `new {className}`.

## Method Signature

```
SchedulerStart(className=[string], name=[string], force=[boolean])
```

### Arguments

| Argument    | Type      | Required | Description                                                                                  | Default |
| ----------- | --------- | -------- | -------------------------------------------------------------------------------------------- | ------- |
| `className` | `string`  | `true`   | The className to the scheduler class to be instantiated: Example: "models.myapp.MyScheduler" |         |
| `name`      | `string`  | `false`  | The name of the scheduler to start, which overrides whatever is in the class.                |         |
| `force`     | `boolean` | `false`  | If true, will force start the scheduler. Default is true                                     | `true`  |

## Examples

## Related

* [SchedulerGet](/boxlang-language/reference/built-in-functions/scheduler/schedulerget.md)
* [SchedulerGetAll](/boxlang-language/reference/built-in-functions/scheduler/schedulergetall.md)
* [SchedulerList](/boxlang-language/reference/built-in-functions/scheduler/schedulerlist.md)
* [SchedulerRestart](/boxlang-language/reference/built-in-functions/scheduler/schedulerrestart.md)
* [SchedulerShutdown](/boxlang-language/reference/built-in-functions/scheduler/schedulershutdown.md)
* [SchedulerStats](/boxlang-language/reference/built-in-functions/scheduler/schedulerstats.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://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/scheduler/schedulerstart.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.
