using System; namespace UniRx { public interface IObserver { void OnCompleted(); void OnError(Exception error); void OnNext(T value); } }