IAsyncReadOnlyReactiveProperty.WithoutCurrent

master
neuecc 2020-05-18 23:36:26 +09:00
parent 2e4fe90956
commit efaf3ee8f5
1 changed files with 1 additions and 0 deletions

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>