[C#/COMMON/REACT/.NET5] ObservableExtensions 클래스 : Subscribe 확장 메소드에서 예외 처리하기
■ ObservableExtensions 클래스의 Subscribe 확장 메소드에서 예외를 처리하는 방법을 보여준다. ▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
using System; using System.Reactive.Linq; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { IObservable<DateTimeOffset> observable = Observable.Interval(TimeSpan.FromSeconds(1)) .Timestamp() .Where(x => x.Value % 2 == 0) .Select(x => x.Timestamp); observable.Subscribe ( x => Console.WriteLine(x), ex => Console.WriteLine(ex) ); Console.ReadKey(false); } #endregion } } |
TestProject.zip