From 0365722f8549ee93918be99da1b9f901cf0b2c8d Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Fri, 13 Mar 2020 01:05:20 +0100 Subject: API documentation for KVision 3.5.2 --- .../-process/index.html | 153 +++++++-------------- 1 file changed, 47 insertions(+), 106 deletions(-) (limited to 'api/pl.treksoft.kvision.electron.nodejs/-process/index.html') diff --git a/api/pl.treksoft.kvision.electron.nodejs/-process/index.html b/api/pl.treksoft.kvision.electron.nodejs/-process/index.html index f18d71c5..a0bdacb6 100644 --- a/api/pl.treksoft.kvision.electron.nodejs/-process/index.html +++ b/api/pl.treksoft.kvision.electron.nodejs/-process/index.html @@ -8,90 +8,102 @@ kvision / pl.treksoft.kvision.electron.nodejs / Process

Process

-external interface Process : EventEmitter +(js) interface Process : EventEmitter

Properties

@@ -103,164 +115,93 @@
-

defaultApp

+(js) +

defaultApp

open var defaultApp: Boolean?
-

mas

+(js) +

mas

open var mas: Boolean?
-

noAsar

+(js) +

noAsar

open var noAsar: Boolean?
-

noDeprecation

+(js) +

noDeprecation

open var noDeprecation: Boolean?
-

resourcesPath

+(js) +

resourcesPath

open var resourcesPath: String?
-

sandboxed

+(js) +

sandboxed

open var sandboxed: Boolean?
-

throwDeprecation

+(js) +

throwDeprecation

open var throwDeprecation: Boolean?
-

traceDeprecation

+(js) +

traceDeprecation

open var traceDeprecation: Boolean?
-

traceProcessWarnings

+(js) +

traceProcessWarnings

open var traceProcessWarnings: Boolean?
-

type

+(js) +

type

open var type: String?
-

versions

+(js) +

versions

open var versions: ProcessVersions?
-

windowsStore

+(js) +

windowsStore

open var windowsStore: Boolean?
-

addListener

+(js) +

addListener

abstract fun addListener(event: String, listener: Function<*>): Process
-

crash

+(js) +

crash

abstract fun crash(): Unit
-

getCPUUsage

+(js) +

getCPUUsage

abstract fun getCPUUsage(): CPUUsage
-

getIOCounters

+(js) +

getIOCounters

abstract fun getIOCounters(): IOCounters
-

getProcessMemoryInfo

+(js) +

getProcessMemoryInfo

abstract fun getProcessMemoryInfo(): ProcessMemoryInfo
-

getSystemMemoryInfo

+(js) +

getSystemMemoryInfo

abstract fun getSystemMemoryInfo(): SystemMemoryInfo
-

hang

+(js) +

hang

abstract fun hang(): Unit
-

on

+(js) +

on

abstract fun on(event: String, listener: Function<*>): Process
-

once

+(js) +

once

abstract fun once(event: String, listener: Function<*>): Process
-

removeListener

+(js) +

removeListener

abstract fun removeListener(event: String, listener: Function<*>): Process
-

setFdLimit

+(js) +

setFdLimit

abstract fun setFdLimit(maxDescriptors: Number): Unit
-

Inherited Functions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

emit

-
-open fun emit(event: String, vararg args: Any): Boolean
-

eventNames

-
-open fun eventNames(): Array<String>
-

getMaxListeners

-
-open fun getMaxListeners(): Number
-

listenerCount

-
-open fun listenerCount(type: String): Number
-

listeners

-
-open fun listeners(event: String): Array<Function<*>>
-

prependListener

-
-open fun prependListener(event: String, listener: Function<*>): EventEmitter
-

prependOnceListener

-
-open fun prependOnceListener(event: String, listener: Function<*>): EventEmitter
-

removeAllListeners

-
-open fun removeAllListeners(event: String? = definedExternally): EventEmitter
-

setMaxListeners

-
-open fun setMaxListeners(n: Number): EventEmitter
-

Extension Functions

- - - - - - - -
-

createInstance

-
-fun <T> Any?.createInstance(vararg args: dynamic): T -

Helper function for creating JavaScript objects from dynamic constructors.

-
-- cgit