in scala/concurrent
object Process

object Process
extends Object
with ScalaObject

Method Summary
final def exit(p: Process, reason: Object): Unit
final def receive[a](f: PartialFunction[Object,a]): a
final def receiveWithin[a](msec: Long)(f: PartialFunction[Object,a]): a
final def self: Process
final def send(p: Process, msg: Object): Unit
final def spawn(def body: Unit): Process
final def spawn_link(def body: Unit): Process

Method Detail

spawn

  final def spawn(def body: Unit): Process

spawn_link

  final def spawn_link(def body: Unit): Process

send

  final def send(p: Process, msg: Object): Unit

receive

  final def receive[a](f: PartialFunction[Object,a]): a

receiveWithin

  final def receiveWithin[a](msec: Long)(f: PartialFunction[Object,a]): a

self

  final def self: Process

exit

  final def exit(p: Process, reason: Object): Unit