Packages

object Monitor extends Monitor

Defines the (Future)-Local monitor as well as some monitor utilities.

Java users should use the Monitors class.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Monitor
  2. Monitor
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def andThen(next: Monitor): Monitor

    A new monitor which first handles the exception with this, then passes it onto next unconditionally.

    A new monitor which first handles the exception with this, then passes it onto next unconditionally. The new monitor handles the exception if either this or next does.

    Definition Classes
    Monitor
  5. def apply(f: => Unit): Unit

    Run the computation f in the context of the current Local monitor.

    Run the computation f in the context of the current Local monitor.

    Definition Classes
    MonitorMonitor
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val catcher: PartialFunction[Throwable, Unit]

    An exception catcher that attempts to handle exceptions with the current monitor.

  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. def get: Monitor

    Get the current Local monitor or a NullMonitor if none has been set.

    Get the current Local monitor or a NullMonitor if none has been set.

    See also

    getOption

  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def getOption: Option[Monitor]

    Get the current Local monitor or None if none has been set.

    Get the current Local monitor or None if none has been set.

    See also

    get

  15. def handle(exc: Throwable): Boolean

    Handle exc with the current Local monitor.

    Handle exc with the current Local monitor. If the Local monitor fails to handle the exception, it is handled by the RootMonitor.

    returns

    whether the exception was handled by this Monitor

    Definition Classes
    MonitorMonitor
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def isActive: Boolean

    Checks whether or not monitoring is activated, meaning that the currently-set Monitor is non-null.

    Checks whether or not monitoring is activated, meaning that the currently-set Monitor is non-null.

    returns

    true if currently-set Monitor is the NullMonitor. False otherwise.

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def mk(f: PartialFunction[Throwable, Boolean]): Monitor

    Create a new monitor from a partial function.

  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def orElse(next: Monitor): Monitor

    A new monitor which, if this fails to handle the exception, attempts to let next handle it.

    A new monitor which, if this fails to handle the exception, attempts to let next handle it.

    Definition Classes
    Monitor
  24. def restoring[T](f: => T): T

    Restore the Local monitor after running computation f

    Restore the Local monitor after running computation f

    Annotations
    @inline()
  25. def set(m: Monitor): Unit

    Set the Local monitor.

    Set the Local monitor.

    Note that the monitor may not be the Monitor companion object.

    See also

    getOption

  26. def setOption(monitor: Option[Monitor]): Unit

    Set the Local monitor.

    Set the Local monitor.

    Note that the monitor may not be the Monitor companion object.

    If None is given, then the local is clear-ed.

    See also

    setOption

  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. def tryHandle(exc: Throwable): Try[Unit]

    An implementation widget: attempts to handle exc returning a com.twitter.util.Try[Unit].

    An implementation widget: attempts to handle exc returning a com.twitter.util.Try[Unit]. If the exception is unhandled, we return Throw(exc), if the handler throws an exception, we wrap it in a MonitorException.

    Attributes
    protected
    Definition Classes
    Monitor
  30. def using[T](m: Monitor)(f: => T): T

    Compute f with the Local monitor set to m

    Compute f with the Local monitor set to m

    Annotations
    @inline()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Monitor

Inherited from AnyRef

Inherited from Any

Ungrouped