ProcessSignal class
On Posix systems, ProcessSignal is used to send a specific signal
to a child process, see Process.kill.
Some ProcessSignals can also be watched, as a way to intercept the default signal handler and implement another. See ProcessSignal.watch for more information.
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
toString(
) → String - Returns a string representation of this object.
-
watch(
) → Stream<ProcessSignal> - Watch for process signals. [...]
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
Operators
-
operator ==(
other) → bool -
The equality operator. [...]
inherited
Constants
- SIGABRT → const ProcessSignal
-
const ProcessSignal._(6, "SIGABRT") - SIGALRM → const ProcessSignal
-
const ProcessSignal._(14, "SIGALRM") - SIGBUS → const ProcessSignal
-
const ProcessSignal._(7, "SIGBUS") - SIGCHLD → const ProcessSignal
-
const ProcessSignal._(17, "SIGCHLD") - SIGCONT → const ProcessSignal
-
const ProcessSignal._(18, "SIGCONT") - SIGFPE → const ProcessSignal
-
const ProcessSignal._(8, "SIGFPE") - SIGHUP → const ProcessSignal
-
const ProcessSignal._(1, "SIGHUP") - SIGILL → const ProcessSignal
-
const ProcessSignal._(4, "SIGILL") - SIGINT → const ProcessSignal
-
const ProcessSignal._(2, "SIGINT") - SIGKILL → const ProcessSignal
-
const ProcessSignal._(9, "SIGKILL") - SIGPIPE → const ProcessSignal
-
const ProcessSignal._(13, "SIGPIPE") - SIGPOLL → const ProcessSignal
-
const ProcessSignal._(29, "SIGPOLL") - SIGPROF → const ProcessSignal
-
const ProcessSignal._(27, "SIGPROF") - SIGQUIT → const ProcessSignal
-
const ProcessSignal._(3, "SIGQUIT") - SIGSEGV → const ProcessSignal
-
const ProcessSignal._(11, "SIGSEGV") - SIGSTOP → const ProcessSignal
-
const ProcessSignal._(19, "SIGSTOP") - SIGSYS → const ProcessSignal
-
const ProcessSignal._(31, "SIGSYS") - SIGTERM → const ProcessSignal
-
const ProcessSignal._(15, "SIGTERM") - SIGTRAP → const ProcessSignal
-
const ProcessSignal._(5, "SIGTRAP") - SIGTSTP → const ProcessSignal
-
const ProcessSignal._(20, "SIGTSTP") - SIGTTIN → const ProcessSignal
-
const ProcessSignal._(21, "SIGTTIN") - SIGTTOU → const ProcessSignal
-
const ProcessSignal._(22, "SIGTTOU") - SIGURG → const ProcessSignal
-
const ProcessSignal._(23, "SIGURG") - SIGUSR1 → const ProcessSignal
-
const ProcessSignal._(10, "SIGUSR1") - SIGUSR2 → const ProcessSignal
-
const ProcessSignal._(12, "SIGUSR2") - SIGVTALRM → const ProcessSignal
-
const ProcessSignal._(26, "SIGVTALRM") - SIGWINCH → const ProcessSignal
-
const ProcessSignal._(28, "SIGWINCH") - SIGXCPU → const ProcessSignal
-
const ProcessSignal._(24, "SIGXCPU") - SIGXFSZ → const ProcessSignal
-
const ProcessSignal._(25, "SIGXFSZ")