Yes. use Sidekiq::Client.push
You can also use the relatively new set API:
set
HardWorker.set(queue: 'foo').perform_async(1,2,3)
set is designed to ape the same ActiveJob API.
Most helpful comment
Yes. use Sidekiq::Client.push