From 46731b443116f8b8b66aa13086743ed342c23293 Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Tue, 12 Sep 2023 17:18:52 +0200 Subject: [PATCH] docs for InProcessWorker and DistributedStdlibWorker --- doc/src/index.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/src/index.md b/doc/src/index.md index 6845263..d715434 100644 --- a/doc/src/index.md +++ b/doc/src/index.md @@ -31,6 +31,14 @@ and whether worker execution is multi-threaded will depend on your operating sys Malt.Worker ``` +### Special workers + +There are two special worker types that can be used for backwards-compatibility or other projects. You can also make your own worker type by extending the `Malt.AbstractWorker` type. + +```@docs +Malt.InProcessWorker +Malt.DistributedStdlibWorker +``` ## Calling Functions