class Simple extends PROC
An elementary process
- Alphabetic
- By Inheritance
- Simple
- PROC
- Function0
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Simple(body: ProcessBody)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
val
__name: String
- Attributes
- protected[io.threadcso]
- Definition Classes
- PROC
-
val
__stackSize: Long
- Attributes
- protected[io.threadcso]
- Definition Classes
- PROC
-
def
apply(): Unit
Run the code of the
body
in the current thread. -
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
fork: Handle
Acquire a thread and start the body of this process running in it; then return a handle on the running thread.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
name: String
- Definition Classes
- PROC
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
stackSize: Long
- Definition Classes
- PROC
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- PROC → Function0 → AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withName(_name: String): PROC
Set the name of this
PROC
and returnthis
PROC
.Set the name of this
PROC
and returnthis
PROC
.- Definition Classes
- PROC
-
def
withStackSize(_stackSize: Long): PROC
Set the (advisory) stack size for threads in which this
PROC
will run tostackSize
, and returnthis
PROC
.Set the (advisory) stack size for threads in which this
PROC
will run tostackSize
, and returnthis
PROC
. SomeJVM
s allow threads to be started with a given stack size.- Definition Classes
- PROC
-
def
||(other: PROC): PROC
Syntactic parallel composition of
this
withother
.Syntactic parallel composition of
this
withother
.- Definition Classes
- PROC