I have a RoR app using Sidekiq which schedules many one time jobs to run on a dynamically computed time i future using perform_in
or perform_at
API of Sidekiq
How do you accomplish the same using Oban? Looking at Oban scheduled job docs it seems the perform time is a compile (static) configuration.
So can Oban be used for my use case or do I have to use another job scheduling library?