Interface IObserver<T>
An observer interface, similar to .NET 4.0 own IObserver.
Namespace:Mapbox.Utils
Assembly:Mapbox.Utils.dll
Syntax
public interface IObserver<T>
Type Parameters
| Name | Description |
|---|---|
| T | The data being observed. |
Methods
OnNext(T)
The Observable has updated the data.
Declaration
void OnNext(T next)
Parameters
| Type | Name | Description |
|---|---|---|
| T | next | The data that has changed. |