Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 디자인패턴
- Kotlin
- Design Pattern
- El
- F
- 팩토리 메소드
- 디자인패턴 #
- Singleton
- designPattern
- 추상팩토리패턴
- Abstract Factory
- r
- 추상 팩토리
- 빌터패턴
- a
- 프로토타입 패턴
- 옵저버 패턴
- 함수형프로그래밍
- builderPattern
- Functional Programming
- PrototypePattern
- Observer Pattern
- 코틀린
- ㅓ
- 싱글톤
- factory method
- ㅋㅁ
Archives
- Today
- Total
오늘도 더 나은 코드를 작성하였습니까?
Koin (Passing Parameters - Injected Parameters) 본문
모든 definition 에서 injection parameter 를 사용할 수 있습니다.
definition에서 injection하고 사용할 parameter를 정한다.
Passing values to inject
class Presenter(val a : A, val b : B)
val myModule = module {
single { params -> Presenter(a = params.get(), b = params.get()) }
}
parameter는 parametersOf() 함수를 사용하여 definition로 전달됨.
class MyComponent : View, KoinComponent {
val a : A ...
val b : B ...
// inject this as View value
val presenter : Presenter by inject { parametersOf(a, b) }
}
Defining an "injected parameter"
Presenter 클래스를 빌드하려면 view 가 필요하다는 것을 확인했습니다.
injected params 를 검색하는 데 도움이 되도록 params 함수 인수를 사용합니다.
class Presenter(val view : View)
val myModule = module {
single { params -> Presenter(view = params.get()) }
}
비구조화된 선언으로 매개변수 객체를 사용하여 주입된 매개변수를 직접 작성할 수도 있습니다.
class Presenter(val view : View)
val myModule = module {
single { (view : View) -> Presenter(view) }
}
Resolving injected parameters
코인 Graph resolving(모든 definition의 resolving의 메인 트리)를 사용하면 주입되어질 매개변수를 찾을 수도 있습니다.
단순히 get() 함수를 사용
class Presenter(val view : View)
val myModule = module {
single { Presenter(get()) }
}
'Koin' 카테고리의 다른 글
Koin (Scopes) (0) | 2022.07.28 |
---|---|
Koin Component (0) | 2022.07.28 |
Koin Modules (0) | 2022.07.28 |
Koin Definitions (0) | 2022.07.28 |
Koin이란? (0) | 2022.07.27 |