Reactive Programming정의Reactive programming is programming with asynchronous data streams. You can listen to that stream and react accordinglyReactive Programming에서는 데이터의 모든 것을 스트림(Stream)으로 본다. 데이터 처리 스트림을 비동기적으로 처리하는 프로그래밍 리액티브 프로그래밍이라고 한다 (Reactive Programming)Observable (observer 할수 있는 객체 Observable), Observer (Observable에 subscribe 하는 객체)Subscriber에서는 `onNext` `onCompleted` `onError` 를 구현하는 ..