Beispielcode für das Beobachter-Muster – Blogs

Dies ist Code für ein Beispiel des Beobachter-Musters:

using System; using System.Collections.Generic; using System.Collections; using System.Threading; using System.Windows.Forms; using System.Drawing; class ObserverPattern { // Beobachter-Muster Judith Bishop Sept 2007 // Zeigt die Aktualisierung von Blogs. Beobachter können sich online per GUI // an- und abmelden. // Zustands-Typ public class Blogs { public string Name {get; set;} public string Topic {get; set;} public Blogs (string name, string topic) { Name = name; Topic = topic; } } public delegate void Callback (Blogs blog); // Das Subject läuft in einem Thread und ändert seinen Zustand // unabhängig vom Rest, indem es den Iterator aufruft. ...

Get C# 3.0 Entwurfsmuster now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.