lib/active_job/queue_adapters.rb in activejob-5.0.0.beta3 vs lib/active_job/queue_adapters.rb in activejob-5.0.0.beta4

- old
+ new

@@ -31,10 +31,11 @@ # | Active Job Async | Yes | Yes | Yes | No | No | No | # | Active Job Inline | No | Yes | N/A | N/A | N/A | N/A | # # ==== Async # - # Yes: The Queue Adapter runs the jobs in a separate or forked process. + # Yes: The Queue Adapter has the ability to run the job in a non-blocking manner. + # It either runs on a separate or forked process, or on a different thread. # # No: The job is run in the same process. # # ==== Queues #