-
Notifications
You must be signed in to change notification settings - Fork 0
Home
exitxhu edited this page Dec 26, 2023
·
1 revision
Welcome to the QueDuler wiki!
As you may noticed QueDuler is Queue + ScheDuler :)
A lightweight job manager supporting lots of common scenarios. QueDuler wraps the logic and reduces Boilerplate codes by various methods to ensure reliable, easy, and fast to-write codes.
the design takes notes of Actor DP but not all the way because the concern Queduler tries to address is not building an entire Application, only managing internal/disturbed jobs. if you need a full-Fledge Actor Framework so your application will build upon it you may use other options like Akka.Net.
- Scheduling
- Dispatching (like consuming queues), which resolves the job every time a message is received - triggered.
- Observables are like Dispatching but the job instance won't dispose after fulfilling the job, every time triggered, it invokes
OnNext()
method.
we will explore more.