Mid GoF Patterns

Subject Interface (INewsPublisher):?

  • This interface defines methods for subscribing, unsubscribing, and notifying

observers. The subject manages a list of observers and notifies them when there is

an update.

public interface INewsPublisher

Follow:

void Subscribe(IObserver observer);

void Unsubscribe(IObserver observer);

void Notify(string news);

More from Design Patterns in C#

All questions for this course