trait OfPlatform extends Builder
- Alphabetic
- By Inheritance
- OfPlatform
- Builder
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def daemon(on: scala.Boolean): OfPlatform
Sets the daemon status.
- abstract def factory(): ThreadFactory
Returns a ThreadFactory to create threads from the current state of the builder.
Returns a ThreadFactory to create threads from the current state of the builder.
- Definition Classes
- Builder
- abstract def group(group: ThreadGroup): OfPlatform
Sets the thread group.
- abstract def inheritInheritableThreadLocals(inherit: scala.Boolean): OfPlatform
Sets whether the thread inherits the initial values of inheritable-thread-local variables from the constructing thread.
Sets whether the thread inherits the initial values of inheritable-thread-local variables from the constructing thread.
- Definition Classes
- OfPlatform → Builder
- abstract def name(prefix: String, start: scala.Long): OfPlatform
Sets the thread name to be the concatenation of a string prefix and the string representation of a counter value.
Sets the thread name to be the concatenation of a string prefix and the string representation of a counter value.
- Definition Classes
- OfPlatform → Builder
- Annotations
- @throws("if start is negative")
- abstract def name(name: String): OfPlatform
Sets the thread name.
Sets the thread name.
- Definition Classes
- OfPlatform → Builder
- abstract def priority(priority: Int): OfPlatform
Sets the thread priority.
Sets the thread priority.
- Annotations
- @throws("if the priority is less than Thread.MIN_PRIORITY or greater than Thread.MAX_PRIORITY")
- abstract def stackSize(stackSize: scala.Long): OfPlatform
Sets the desired stack size.
Sets the desired stack size.
- Annotations
- @throws("if the stack size is negative")
- abstract def start(task: Runnable): Thread
Creates a new Thread from the current state of the builder and schedules it to execute.
Creates a new Thread from the current state of the builder and schedules it to execute.
- Definition Classes
- Builder
- abstract def uncaughtExceptionHandler(ueh: UncaughtExceptionHandler): OfPlatform
Sets the uncaught exception handler.
Sets the uncaught exception handler.
- Definition Classes
- OfPlatform → Builder
- abstract def unstarted(task: Runnable): Thread
Creates a new Thread from the current state of the builder to run the given task.
Creates a new Thread from the current state of the builder to run the given task.
- Definition Classes
- Builder
Concrete Value Members
- final def !=(arg0: Any): scala.Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): scala.Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def daemon(): OfPlatform
Sets the daemon status to true.
- final def eq(arg0: AnyRef): scala.Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): scala.Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: scala.Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): scala.Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: scala.Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: scala.Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()