in scala/concurrent
class Process

class Process(def body: Unit)
extends Actor
with ScalaObject

Method Summary
  def !(msg: Object): Unit
  def exit(reason: Object): Unit
  def link(p: Process): Unit
override def run(): Unit
  def self: Process
  def spawn_link(def body: Unit): Process

Methods inherited from java/lang/Object-class
clone, eq, equals, finalize, getClass, hashCode, notify, notifyAll, synchronized, wait, wait, wait

Methods inherited from java/lang/Thread-class
checkAccess, countStackFrames, destroy, getContextClassLoader, getName, getPriority, getThreadGroup, interrupt, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setName, setPriority, start, stop, stop, suspend, toString

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/concurrent/ListQueueCreator-class
queueCreate

Methods inherited from scala/concurrent/MailBox-class
Message, receive, receiveWithin, send

Method Detail

run

  override def run(): Unit

!

  def !(msg: Object): Unit

link

  def link(p: Process): Unit

spawn_link

  def spawn_link(def body: Unit): Process

self

  def self: Process

exit

  def exit(reason: Object): Unit