//----------------------------------------------------------------------- // // Copyright (c) 2016 Mapbox. All rights reserved. // //----------------------------------------------------------------------- namespace Mapbox.Utils { /// /// An observer interface, similar to .NET 4.0 own IObserver. /// /// /// The data being observed. /// public interface IObserver { /// The has updated the data. /// The data that has changed. void OnNext(T next); } }