Observer Design Pattern

This commit is contained in:
Ki Rill 2021-03-06 17:26:34 +06:00
parent 796bb12964
commit df65740a06
3 changed files with 65 additions and 67 deletions

View File

@ -1,67 +0,0 @@
import std.stdio: writeln;
interface IObserver {
void update(string msg);
}
class WhatsApp {
private IObserver[] list;
this() {}
~this() {}
void addClient(IObserver o) {
list ~= o;
}
void removeClient(IObserver o) {
import std.algorithm: remove;
list = list.remove!(a => a is o);
}
void notify(string msg) {
foreach(client; list) {
client.update(msg);
}
}
}
class Person: IObserver {
string name;
this(string name) {
this.name = name;
}
void update(string msg) {
writeln(name, "\t: notified. [", msg, "]");
}
}
void main() {
WhatsApp app = new WhatsApp();
Person anna = new Person("Anna");
Person john = new Person("John");
Person markus = new Person("Markus");
app.addClient(anna);
app.addClient(john);
app.addClient(markus);
app.notify("hello, world!");
app.removeClient(john);
app.notify("john left the conversation");
}

View File

@ -0,0 +1,65 @@
import std.stdio: writeln;
// IObserver interface
interface IObserver {
void update(string msg);
}
// Person (observer)
class Person: IObserver {
string name;
this(string name) {
this.name = name;
}
void update(string msg) {
writeln(name, "\t: notified. [", msg, "]");
}
}
// WhatsApp (subject)
class WhatsApp {
private IObserver[] list;
this() {}
~this() {}
void addClient(IObserver o) {
list ~= o;
}
void removeClient(IObserver o) {
import std.algorithm: remove;
list = list.remove!(a => a is o);
}
void notify(string msg) {
foreach(client; list) {
client.update(msg);
}
}
}
void main() {
WhatsApp conversation = new WhatsApp();
Person anna = new Person("Anna");
Person john = new Person("John");
Person markus = new Person("Markus");
conversation.addClient(anna);
conversation.addClient(john);
conversation.addClient(markus);
conversation.notify("hello, world!");
conversation.removeClient(john);
conversation.notify("john left the conversation");
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 KiB