---
title: "schedule(after:interval:tolerance:options:_:)"
framework: combine
role: symbol
role_heading: Instance Method
path: "combine/immediatescheduler/schedule(after:interval:tolerance:options:_:)"
---

# schedule(after:interval:tolerance:options:_:)

Performs the action at some time after the specified date, at the specified frequency, optionally taking into account tolerance if possible.

## Declaration

```swift
@discardableResult func schedule(after date: ImmediateScheduler.SchedulerTimeType, interval: ImmediateScheduler.SchedulerTimeType.Stride, tolerance: ImmediateScheduler.SchedulerTimeType.Stride, options: ImmediateScheduler.SchedulerOptions?, _ action: @escaping () -> Void) -> any Cancellable
```

## Discussion

Discussion The immediate scheduler ignores date and performs the action immediately.

## See Also

### Scheduling actions

- [schedule(after:tolerance:options:_:)](combine/immediatescheduler/schedule(after:tolerance:options:_:).md)
- [schedule(options:_:)](combine/immediatescheduler/schedule(options:_:).md)
