Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
a local clone.
std.signals
Signals and Slots are an implementation of the Observer Pattern.
Essentially, when a Signal is emitted, a list of connected Observers
(called slots) are called.
There have been several D implementations of Signals and Slots.
This version makes use of several new features in D, which make
using it simpler and less error prone. In particular, it is no
longer necessary to instrument the slots.
References:
A Deeper Look at Signals and Slots
Observer pattern
Wikipedia
Boost Signals
Qt
Signals and Slots in D
Dynamic binding -- Qt's Signals and Slots vs Objective-C
Dissecting the SS
about harmonia
Another event handling module
Suggestion: signal/slot mechanism
Signals and slots?
Signals and slots ready for evaluation
Signals & Slots for Walter
Signal/Slot mechanism?
Modern Features?
Delegates vs interfaces
The importance of component programming (properties, signals and slots, etc)
signals and slots
Bugs:
Slots can only be delegates formed from class objects or
interfaces to class objects. If a delegate to something else
is passed to connect(), such as a struct member function,
a nested function or a COM interface, undefined behavior
will result.
Not safe for multiple threads operating on the same signals
or slots.
License:
Authors:
Source: std/signals.d
- Mixin to create a signal within a class object.Different signals can be added to a class by naming the mixins.Examples:
import std.signals; int observedMessageCounter = 0; class Observer { // our slot void watch(string msg, int value) { switch(observedMessageCounter++) { case 0: assert(msg == "setting new value"); assert(value == 4); break; case 1: assert(msg == "setting new value"); assert(value == 6); break; default: assert(0, "Unknown observation"); } } } class Foo { int value() { return _value; } int value(int v) { if (v != _value) { _value = v; // call all the connected slots with the two parameters emit("setting new value", v); } return v; } // Mix in all the code we need to make Foo into a signal mixin Signal!(string, int); private : int _value; } Foo a = new Foo; Observer o = new Observer; a.value = 3; // should not call o.watch() a.connect(&o.watch); // o.watch is the slot a.value = 4; // should call o.watch() a.disconnect(&o.watch); // o.watch is no longer a slot a.value = 5; // so should not call o.watch() a.connect(&o.watch); // connect again a.value = 6; // should call o.watch() destroy(o); // destroying o should automatically disconnect it a.value = 7; // should not call o.watch() assert(observedMessageCounter == 2);
- Call each of the connected slots, passing the argument(s) i to them.
- Add a slot to the list of slots to be called when emit() is called.
- Remove a slot from the list of slots to be called when emit() is called.
Copyright Digital Mars 2000 - 2009.
| Page generated by
Ddoc on (no date time)