IAsyncReadOnlyReactiveProperty.WithoutCurrent

This commit is contained in:
neuecc
2020-05-18 23:36:26 +09:00
parent 2e4fe90956
commit efaf3ee8f5

View File

@@ -7,6 +7,7 @@ namespace Cysharp.Threading.Tasks
public interface IAsyncReadOnlyReactiveProperty<T> : IUniTaskAsyncEnumerable<T>
{
T Value { get; }
IUniTaskAsyncEnumerable<T> WithoutCurrent();
}
public interface IAsyncReactiveProperty<T> : IAsyncReadOnlyReactiveProperty<T>