J.Vm

object Vm
class Object
trait Matchable
class Any

Member

object Host
object Memory extends Info

App.Memory provides nicer access to 'java.lang.Runtime.getRuntime' memory values

 ```
    J.Vm.Memory.tp

    // Oputput

    J.Vm.Memory{max=15.2gB,total=1.0gB,free=970.0mB,used=59.1mB}
  ```
Source
Memory.scala
opaque type Priority

Priority is an opaque Int value, ranging from 1 to 10

Priority is an opaque Int value, ranging from 1 to 10

Source
Priority.scala
object Setup

Scalqa Configuration

Setup contains a set of mutable configuration properties, which adhere to the following rules:

  • Once the property value was accessed, it cannot be chaged anymore
  • If method J.Vm.Setup.seal is executed, all properties become immutable
Source
Setup.scala

Def

def exit: Unit

Kills process

Kills process

Calls System.exit(0)

Source
__.scala