Trait/Object

org.scalatest.concurrent

Signaler

Related Docs: object Signaler | package concurrent

Permalink

trait Signaler extends AnyRef

Strategy for signaling an operation after a timeout expires.

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

Source
Signaler.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Signaler
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

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

    Permalink

    Signals an operation.

    Signals an operation.

    This method may do anything to attempt to signal or interrupt an operation, or even do nothing. When called by failAfter method of trait TimeLimits, 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.