Object/Trait

com.twitter.util

Monitor

Related Docs: trait Monitor | package util

Permalink

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. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def andThen(next: Monitor): Monitor

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    Any
  7. val catcher: PartialFunction[Throwable, Unit]

    Permalink

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

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def get: Monitor

    Permalink

    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[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def getOption: Option[Monitor]

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  17. def isActive: Boolean

    Permalink

    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

    Permalink
    Definition Classes
    Any
  19. def mk(f: PartialFunction[Throwable, Boolean]): Monitor

    Permalink

    Create a new monitor from a partial function.

  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. def orElse(next: Monitor): Monitor

    Permalink

    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

    Permalink

    Restore the Local monitor after running computation f

    Restore the Local monitor after running computation f

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

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. def tryHandle(exc: Throwable): Try[Unit]

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Monitor

Inherited from AnyRef

Inherited from Any

Ungrouped