You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// onNext 이벤트를 받았을 때 할 행동을 정의 한 경우
Observable
.just("54321")
.subscribe({ data: String ->
}.)
// onNext, onError 이벤트를 받았을 때 할 행동을 정의 한 경우
Observable
.just("54321")
.subscribe({ data: String ->
}, { throwable: Throwable ->
})
// onNext, onError, onComplete 이벤트를 받았을 때 할 행동을 정의 한 경우
Observable
.just("54321")
.subscribe({ data: String ->
}, { throwable: Throwable ->
}, {
// onComplete 이벤트가 발생 했을 때 실행 할 코드
})
위의 코드를 각자 플랫폼에 맞게 작성해보고, 실행시켜보시고 제출해주세요 !
과제 목적
subscribe 함수 활용을 한번 해보기 위함입니다.
유의사항
reactiveX 라이브러리를 각자 플랫폼에 맞게 설치하셔야 합니다 !
The text was updated successfully, but these errors were encountered:
과제 내용
위의 코드를 각자 플랫폼에 맞게 작성해보고, 실행시켜보시고 제출해주세요 !
과제 목적
subscribe 함수 활용을 한번 해보기 위함입니다.
유의사항
reactiveX 라이브러리를 각자 플랫폼에 맞게 설치하셔야 합니다 !
The text was updated successfully, but these errors were encountered: