Skip to content

Commit 77f0e27

Browse files
committed
FEAT: including Softinnov's task scheduler as Rebol3 module
1 parent 25d4e85 commit 77f0e27

File tree

3 files changed

+430
-0
lines changed

3 files changed

+430
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ It is possible to extend Rebol functionality using external modules (native and
4141
* [Rebol/MathPresso](https://github.com/Siskin-framework/Rebol-MathPresso) - Mathematical Expression Parser And JIT Compiler
4242
* [Rebol/MiniAudio](https://github.com/Oldes/Rebol-MiniAudio) - An audio playback extension
4343
* [Rebol/Names](https://github.com/Oldes/Rebol-Names) - Random names generator scheme
44+
* [Rebol/Scheduler](https://github.com/Oldes/Rebol-Scheduler) - Task scheduling library with dialect
4445
* [Rebol/Spotify](https://github.com/Oldes/Rebol-Spotify) - Spotify Web API
4546
* [Rebol/OpenCV](https://github.com/Oldes/Rebol-OpenCV) - Computer Vision Library
4647
* [Rebol/SQLite](https://github.com/Siskin-framework/Rebol-SQLite) - SQL database engine

src/boot/sysobj.reb

+1
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ modules: object [
254254
;; optional modules, protocol and codecs
255255
httpd: https://src.rebol.tech/modules/httpd.reb
256256
prebol: https://src.rebol.tech/modules/prebol.reb
257+
scheduler: https://src.rebol.tech/modules/scheduler.reb
257258
spotify: https://src.rebol.tech/modules/spotify.reb
258259
unicode-utils: https://src.rebol.tech/modules/unicode-utils.reb
259260
daytime: https://src.rebol.tech/mezz/prot-daytime.reb

0 commit comments

Comments
 (0)