mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
10 lines
405 B
Text
10 lines
405 B
Text
Signal is a list of registered asynchronous callbacks.
|
|
|
|
The signal's life-cycle has two stages: after creation its content could be
|
|
filled by using standard list operations: sig.append() etc.
|
|
|
|
After you call sig.freeze() the signal is frozen: adding, removing and dropping
|
|
callbacks is forbidden.
|
|
|
|
The only available operation is calling the previously registered callbacks by
|
|
using await sig.send(data).
|