Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4주차 과제 - Just 함수 구독해보기 #44

Open
kangraemin opened this issue Apr 21, 2022 · 0 comments
Open

4주차 과제 - Just 함수 구독해보기 #44

kangraemin opened this issue Apr 21, 2022 · 0 comments
Labels
Homework 과제 설명 이슈

Comments

@kangraemin
Copy link
Owner

과제 내용

// 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 라이브러리를 각자 플랫폼에 맞게 설치하셔야 합니다 !

@kangraemin kangraemin added the Homework 과제 설명 이슈 label Apr 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Homework 과제 설명 이슈
Projects
None yet
Development

No branches or pull requests

1 participant