Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/commanded/commanded-scheduler
Schedule one-off and recurring commands for Commanded CQRS/ES applications
https://github.com/commanded/commanded-scheduler
command-scheduler commanded cqrs recurring-commands
Last synced: 2 months ago
JSON representation
Schedule one-off and recurring commands for Commanded CQRS/ES applications
- Host: GitHub
- URL: https://github.com/commanded/commanded-scheduler
- Owner: commanded
- License: mit
- Created: 2017-11-21T15:33:35.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-09T14:03:01.000Z (about 5 years ago)
- Last Synced: 2024-10-29T22:37:26.638Z (3 months ago)
- Topics: command-scheduler, commanded, cqrs, recurring-commands
- Language: Elixir
- Size: 106 KB
- Stars: 32
- Watchers: 4
- Forks: 11
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-elixir-cqrs - Commanded scheduler - Schedule one-off and recurring commands for Commanded CQRS/ES applications . (Libraries)
README
# Commanded scheduler
One-off command scheduler for [Commanded](https://github.com/commanded/commanded) CQRS/ES applications using [Ecto](https://github.com/elixir-ecto/ecto) for persistence.
Commands can be scheduled in one of two ways:
- Using the `Commanded.Scheduler` module as described in the [Example usage](guides/Usage.md#usage) section.
- By [dispatching a scheduled command](guides/Usage.md#dispatch-a-scheduled-command) using your app's router or from within a process manager.```elixir
Commanded.Scheduler.schedule_once(reservation_id, %TimeoutReservation{..}, ~N[2020-01-01 12:00:00])
```---
MIT License
[![Build Status](https://travis-ci.org/commanded/commanded-scheduler.svg?branch=master)](https://travis-ci.org/commanded/commanded-scheduler)
---
## Getting started and usage guides
- [Getting started](guides/Getting%20Started.md)
- [Usage](guides/Usage.md)
- [Testing](guides/Testing.md)