Packages

a

monix.execution.annotations

UnsafeBecauseBlocking

class UnsafeBecauseBlocking extends Unsafe

An annotation meant to warn users on functions that are triggering blocking operations.

Blocking threads is unsafe because:

  • the user has to be aware of the configuration of the underlying thread-pool, which should be preferably unbounded, or otherwise it can suffer from thread starvation
  • it's not supported on top of JavaScript

Prefer to avoid blocking operations.

Source
Unsafe.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UnsafeBecauseBlocking
  2. Unsafe
  3. StaticAnnotation
  4. Annotation
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new UnsafeBecauseBlocking()