rxdogtag / com.uber.rxdogtag / RxDogTag / Builder / configureWith
configureWith¶
fun configureWith(configurer:
RxDogTag.Configurer
!):
RxDogTag.Builder
!
Can be used to compose this builder with a `[
Configurer`](../-configurer/index.md) in a way that doesn’t break the builder chain.
Example:
```
RxDogTag.builder()
.configureWith(AutoDisposeConfigurer::configure)
.install();
```
Parameters¶
configurer
- RxDogTag.Configurer!: an `[
Configurer`](../-configurer/index.md) instance to be called.
Return RxDogTag.Builder!: this builder for fluent chaining.