MCPcopy Create free account
hub / github.com/godbus/dbus / NewSequentialSignalHandler

Function NewSequentialSignalHandler

sequential_handler.go:11–13  ·  view source on GitHub ↗

NewSequentialSignalHandler returns an instance of a new signal handler that guarantees sequential processing of signals. It is a guarantee of this signal handler that signals will be written to channels in the order they are received on the DBus connection.

()

Source from the content-addressed store, hash-verified

9// guarantee of this signal handler that signals will be written to
10// channels in the order they are received on the DBus connection.
11func NewSequentialSignalHandler() SignalHandler {
12 return &sequentialSignalHandler{}
13}
14
15type sequentialSignalHandler struct {
16 mu sync.RWMutex

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…