package signal
import "os/signal"
Package signal implements access to incoming signals.
Index ¶
- func Ignore(sig ...os.Signal)
- func Notify(c chan<- os.Signal, sig ...os.Signal)
- func Reset(sig ...os.Signal)
- func Stop(c chan<- os.Signal)
Examples ¶
Functions ¶
func Ignore ¶
Ignore causes the provided signals to be ignored. If they are received by the program, nothing will happen. Ignore undoes the effect of any prior calls to Notify for the provided signals. If no signals are provided, all incoming signals will be ignored.
func Notify ¶
Notify causes package signal to relay incoming signals to c. If no signals are provided, all incoming signals will be relayed to c. Otherwise, just the provided signals will.
Package signal will not block sending to c: the caller must ensure that c has sufficient buffer space to keep up with the expected signal rate. For a channel used for notification of just one signal value, a buffer of size 1 is sufficient.
It is allowed to call Notify multiple times with the same channel: each call expands the set of signals sent to that channel. The only way to remove signals from the set is to call Stop.
It is allowed to call Notify multiple times with different channels
and the same signals: each channel receives copies of incoming
signals independently.
Code:play
Example¶
package main
import (
"fmt"
"os"
"os/signal"
)
func main() {
// Set up channel on which to send signal notifications.
// We must use a buffered channel or risk missing the signal
// if we're not ready to receive when the signal is sent.
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, os.Kill)
// Block until a signal is received.
s := <-c
fmt.Println("Got signal:", s)
}
func Reset ¶
Reset undoes the effect of any prior calls to Notify for the provided signals. If no signals are provided, all signal handlers will be reset.
func Stop ¶
Stop causes package signal to stop relaying incoming signals to c. It undoes the effect of all prior calls to Notify using c. When Stop returns, it is guaranteed that c will receive no more signals.
Source Files ¶
- Version
- v1.5.0-beta.3
- Published
- Jul 30, 2015
- Platform
- darwin/amd64
- Imports
- 3 packages
- Last checked
- 10 seconds ago –
Tools for package owners.