Packages

trait Interruptor extends (Thread) ⇒ Unit

Strategy for interrupting an operation after a timeout expires.

An instance of this trait is used for configuration when using traits Timeouts and TimeLimitedTests.

Self Type
Interruptor
Annotations
@deprecated
Deprecated

Please use org.scalatest.concurrent.Signaler instead.

Source
Interruptor.scala
Linear Supertypes
(Thread) ⇒ Unit, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Interruptor
  2. Function1
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(testThread: Thread): Unit

    Interrupts an operation.

    Interrupts an operation.

    This method may do anything to attempt to interrupt an operation, or even do nothing. When called by failAfter method of trait Timeouts, the passed Thread will represent the main test thread. This Thread is passed in case it is useful, but need not be used by implementations of this method.

    Definition Classes
    Interruptor → Function1

Concrete Value Members

  1. def andThen[A](g: (Unit) ⇒ A): (Thread) ⇒ A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  2. def compose[A](g: (A) ⇒ Thread): (A) ⇒ Unit
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  3. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any