scala.actors

TIMEOUT

object TIMEOUT extends Product with Serializable

Used as the timeout pattern in receiveWithin and reactWithin.

Annotations
@deprecated
Deprecated

(Since version 2.11.0) Use the akka.actor package instead. For migration from the scala.actors package refer to the Actors Migration Guide.

Example:
  1. receiveWithin(500) {
    case (x, y) => ...
    case TIMEOUT => ...
    }
Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TIMEOUT
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All