// Copyright (C) Stichting Deltares 2016. All rights reserved.
//
// This file is part of Ringtoets.
//
// Ringtoets is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see .
//
// All names, logos, and references to "Deltares" are registered trademarks of
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
using System;
namespace Core.Common.Base
{
///
/// Class that implements in a way that a single can be observed.
///
///
/// The being observed by instances of this class can be dynamically changed.
///
public class Observer : IObserver, IDisposable
{
private readonly Action updateObserverAction;
private IObservable observable;
///
/// Creates a new instance of the class.
///
/// The action to perform on notifications coming from .
public Observer(Action updateObserverAction)
{
this.updateObserverAction = updateObserverAction;
}
///
/// Gets or sets the object to observe.
///
public IObservable Observable
{
get
{
return observable;
}
set
{
observable?.Detach(this);
observable = value;
observable?.Attach(this);
}
}
public void Dispose()
{
Observable = null;
}
public void UpdateObserver()
{
updateObserverAction();
}
}
}