Show / Hide Table of Contents

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.

Back to top Copyright © 2015-2016 Microsoft
Generated by DocFX