Parallel Operator

Description

The parallel operator schedules the source observable on a ThreadsScheduler, so each emission is delivered on a separate thread. It is a shorthand for scheduling on threads and is useful when you want to move work off the current thread.

See also

Operators, ThreadsScheduler