csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.8 KiB
54 lines
1.8 KiB
// Copyright (c) The Avalonia Project. All rights reserved.
|
|
// Licensed under the MIT license. See licence.md file in the project root for full license information.
|
|
|
|
using System;
|
|
using System.Reactive.Disposables;
|
|
|
|
namespace Avalonia.Reactive
|
|
{
|
|
/// <summary>
|
|
/// Provides common observable methods not found in standard Rx framework.
|
|
/// </summary>
|
|
public static class ObservableEx
|
|
{
|
|
/// <summary>
|
|
/// Returns an observable that fires once with the specified value and never completes.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the value.</typeparam>
|
|
/// <param name="value">The value.</param>
|
|
/// <returns>The observable.</returns>
|
|
public static IObservable<T> SingleValue<T>(T value)
|
|
{
|
|
return new SingleValueImpl<T>(value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Disposes the current <see cref="IDisposable"/> and saves the next.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the value.</typeparam>
|
|
/// <param name="observable">The source <see cref="IObservable{T}"/>.</param>
|
|
/// <returns>The observable.</returns>
|
|
public static IObservable<T> DisposeCurrentOnNext<T>(this IObservable<T> observable)
|
|
where T : IDisposable
|
|
{
|
|
var subject = new DisposeOnNextObservable<T>();
|
|
observable.Subscribe(subject);
|
|
return subject;
|
|
}
|
|
|
|
private class SingleValueImpl<T> : IObservable<T>
|
|
{
|
|
private T _value;
|
|
|
|
public SingleValueImpl(T value)
|
|
{
|
|
_value = value;
|
|
}
|
|
public IDisposable Subscribe(IObserver<T> observer)
|
|
{
|
|
observer.OnNext(_value);
|
|
return Disposable.Empty;
|
|
}
|
|
}
|
|
}
|
|
}
|