IObservable<T> Interface

Represents an observable subject.

Namespace: Spring.DesignPatterns
IInvokable
  Spring.DesignPatterns.IObservable<T>
    Spring.DesignPatterns.TObservable<T>
type
 IObservable<T> = interface(IInvokable)
 end;

Type Parameters

T

The IObservable<T> type exposes the following members.

Show:
 NameDescription
Attach(T)

Represents method Attach(T).

Detach(T)

Represents method Detach(T).

Notify

Represents method Notify.

Top