├── .circleci └── config.yml ├── .gitignore ├── CLA.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── boots ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── agoda │ │ └── boots │ │ ├── Bootable.kt │ │ ├── Boots.kt │ │ ├── Configuration.kt │ │ ├── Errors.kt │ │ ├── Interfaces.kt │ │ ├── Key.kt │ │ ├── Listener.kt │ │ ├── Report.kt │ │ ├── Status.kt │ │ ├── impl │ │ ├── DefaultExecutor.kt │ │ ├── DefaultNotifier.kt │ │ ├── DefaultReporter.kt │ │ └── DefaultSequencer.kt │ │ └── strict │ │ ├── IccFinder.kt │ │ └── SccFinder.kt │ └── test │ └── kotlin │ └── com │ └── agoda │ └── boots │ ├── BootsTest.kt │ ├── ErrorsTest.kt │ ├── KeyTest.kt │ ├── impl │ ├── DefaultNotifierTest.kt │ ├── DefaultReporterTest.kt │ └── DefaultSequencerTest.kt │ └── strict │ ├── IccFinderTest.kt │ └── SccFinderTest.kt ├── docs ├── boots │ ├── alltypes │ │ └── index.md │ ├── com.agoda.boots.impl │ │ ├── -default-executor │ │ │ ├── -init-.md │ │ │ ├── capacity.md │ │ │ ├── execute.md │ │ │ ├── index.md │ │ │ ├── is-main-thread-supported.md │ │ │ └── pool.md │ │ ├── -default-notifier │ │ │ ├── -init-.md │ │ │ ├── add.md │ │ │ ├── boots.md │ │ │ ├── executor.md │ │ │ ├── index.md │ │ │ ├── listeners.md │ │ │ ├── logger.md │ │ │ ├── notify.md │ │ │ └── remove.md │ │ ├── -default-reporter │ │ │ ├── -init-.md │ │ │ ├── boots.md │ │ │ ├── executor.md │ │ │ ├── get.md │ │ │ ├── index.md │ │ │ ├── logger.md │ │ │ ├── reports.md │ │ │ └── set.md │ │ ├── -default-sequencer │ │ │ ├── -init-.md │ │ │ ├── boots.md │ │ │ ├── check.md │ │ │ ├── count.md │ │ │ ├── executor.md │ │ │ ├── index.md │ │ │ ├── logger.md │ │ │ ├── map.md │ │ │ ├── next.md │ │ │ ├── resolve.md │ │ │ ├── start.md │ │ │ ├── tasks.md │ │ │ ├── update.md │ │ │ └── visit.md │ │ └── index.md │ ├── com.agoda.boots.strict │ │ ├── -icc-finder │ │ │ ├── -init-.md │ │ │ ├── find.md │ │ │ └── index.md │ │ ├── -scc-finder │ │ │ ├── -init-.md │ │ │ ├── find.md │ │ │ └── index.md │ │ └── index.md │ ├── com.agoda.boots │ │ ├── -boot-exception │ │ │ ├── -init-.md │ │ │ ├── index.md │ │ │ └── message.md │ │ ├── -bootable │ │ │ ├── -init-.md │ │ │ ├── boot.md │ │ │ ├── dependencies.md │ │ │ ├── equals.md │ │ │ ├── hash-code.md │ │ │ ├── index.md │ │ │ ├── is-concurrent.md │ │ │ ├── is-critical.md │ │ │ └── key.md │ │ ├── -boots │ │ │ ├── add.md │ │ │ ├── boot.md │ │ │ ├── configure.md │ │ │ ├── index.md │ │ │ ├── invoke.md │ │ │ ├── report.md │ │ │ ├── reset.md │ │ │ ├── subscribe.md │ │ │ └── unsubscribe.md │ │ ├── -configuration │ │ │ ├── -builder │ │ │ │ ├── -init-.md │ │ │ │ ├── build.md │ │ │ │ ├── index.md │ │ │ │ ├── set-executor.md │ │ │ │ ├── set-logger.md │ │ │ │ ├── set-notifier.md │ │ │ │ ├── set-reporter.md │ │ │ │ ├── set-sequencer.md │ │ │ │ └── set-strict-mode.md │ │ │ ├── -init-.md │ │ │ ├── executor.md │ │ │ ├── index.md │ │ │ ├── is-strict-mode.md │ │ │ ├── logger.md │ │ │ ├── notifier.md │ │ │ ├── reporter.md │ │ │ └── sequencer.md │ │ ├── -executor │ │ │ ├── -d-e-f-a-u-l-t_-c-a-p-a-c-i-t-y.md │ │ │ ├── capacity.md │ │ │ ├── execute.md │ │ │ ├── index.md │ │ │ └── is-main-thread-supported.md │ │ ├── -holder │ │ │ ├── add.md │ │ │ ├── all.md │ │ │ ├── boots.md │ │ │ ├── critical.md │ │ │ ├── excluding.md │ │ │ ├── executor.md │ │ │ ├── index.md │ │ │ ├── logger.md │ │ │ └── multiple.md │ │ ├── -incorrect-connected-boot-exception │ │ │ ├── -init-.md │ │ │ ├── index.md │ │ │ └── message.md │ │ ├── -key │ │ │ ├── -all │ │ │ │ ├── -init-.md │ │ │ │ ├── equals.md │ │ │ │ ├── hash-code.md │ │ │ │ ├── index.md │ │ │ │ └── to-string.md │ │ │ ├── -critical │ │ │ │ ├── -init-.md │ │ │ │ ├── equals.md │ │ │ │ ├── hash-code.md │ │ │ │ ├── index.md │ │ │ │ └── to-string.md │ │ │ ├── -excluding │ │ │ │ ├── -init-.md │ │ │ │ ├── contains-all.md │ │ │ │ ├── contains.md │ │ │ │ ├── equals.md │ │ │ │ ├── hash-code.md │ │ │ │ ├── index.md │ │ │ │ ├── is-empty.md │ │ │ │ ├── is-not-empty.md │ │ │ │ ├── iterator.md │ │ │ │ ├── size.md │ │ │ │ └── to-string.md │ │ │ ├── -multiple │ │ │ │ ├── -init-.md │ │ │ │ ├── contains-all.md │ │ │ │ ├── contains.md │ │ │ │ ├── equals.md │ │ │ │ ├── hash-code.md │ │ │ │ ├── index.md │ │ │ │ ├── is-empty.md │ │ │ │ ├── is-not-empty.md │ │ │ │ ├── iterator.md │ │ │ │ ├── size.md │ │ │ │ └── to-string.md │ │ │ ├── -single │ │ │ │ ├── -init-.md │ │ │ │ ├── equals.md │ │ │ │ ├── hash-code.md │ │ │ │ ├── id.md │ │ │ │ ├── index.md │ │ │ │ └── to-string.md │ │ │ ├── all.md │ │ │ ├── critical.md │ │ │ ├── excluding.md │ │ │ ├── index.md │ │ │ ├── is-booted.md │ │ │ ├── is-booting.md │ │ │ ├── is-failed.md │ │ │ ├── is-idle.md │ │ │ ├── multiple.md │ │ │ ├── single.md │ │ │ └── status.md │ │ ├── -listener │ │ │ ├── -builder │ │ │ │ ├── index.md │ │ │ │ ├── on-boot.md │ │ │ │ └── on-failure.md │ │ │ ├── -init-.md │ │ │ ├── index.md │ │ │ ├── on-boot.md │ │ │ └── on-failure.md │ │ ├── -logger │ │ │ ├── -level │ │ │ │ ├── -d-e-b-u-g.md │ │ │ │ ├── -e-r-r-o-r.md │ │ │ │ ├── -i-n-f-o.md │ │ │ │ ├── -v-e-r-b-o-s-e.md │ │ │ │ ├── -w-a-r-n-i-n-g.md │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ └── log.md │ │ ├── -notifier │ │ │ ├── add.md │ │ │ ├── index.md │ │ │ ├── notify.md │ │ │ └── remove.md │ │ ├── -report │ │ │ ├── -init-.md │ │ │ ├── dependent.md │ │ │ ├── index.md │ │ │ ├── key.md │ │ │ ├── start.md │ │ │ ├── status.md │ │ │ └── time.md │ │ ├── -reporter │ │ │ ├── get.md │ │ │ ├── index.md │ │ │ └── set.md │ │ ├── -sequencer │ │ │ ├── count.md │ │ │ ├── index.md │ │ │ ├── next.md │ │ │ └── start.md │ │ ├── -status │ │ │ ├── -booted │ │ │ │ ├── -init-.md │ │ │ │ └── index.md │ │ │ ├── -booting │ │ │ │ ├── -init-.md │ │ │ │ └── index.md │ │ │ ├── -failed │ │ │ │ ├── -init-.md │ │ │ │ ├── index.md │ │ │ │ └── reason.md │ │ │ ├── -idle │ │ │ │ ├── -init-.md │ │ │ │ └── index.md │ │ │ ├── booted.md │ │ │ ├── booting.md │ │ │ ├── failed.md │ │ │ ├── idle.md │ │ │ └── index.md │ │ ├── -strong-connected-boot-exception │ │ │ ├── -init-.md │ │ │ ├── index.md │ │ │ └── message.md │ │ └── index.md │ ├── index.md │ └── package-list ├── executor-android │ ├── alltypes │ │ └── index.md │ ├── com.agoda.boots.executor │ │ ├── -android-executor │ │ │ ├── -init-.md │ │ │ ├── capacity.md │ │ │ ├── execute.md │ │ │ ├── index.md │ │ │ └── is-main-thread-supported.md │ │ └── index.md │ ├── index.md │ └── package-list ├── executor-coroutine-android │ ├── alltypes │ │ └── index.md │ ├── com.agoda.boots.executor │ │ ├── -coroutine-android-executor │ │ │ ├── -init-.md │ │ │ ├── capacity.md │ │ │ ├── index.md │ │ │ └── is-main-thread-supported.md │ │ └── index.md │ ├── index.md │ └── package-list ├── executor-coroutine │ ├── alltypes │ │ └── index.md │ ├── com.agoda.boots.executor │ │ ├── -coroutine-executor │ │ │ ├── -init-.md │ │ │ ├── capacity.md │ │ │ ├── execute.md │ │ │ ├── index.md │ │ │ └── is-main-thread-supported.md │ │ └── index.md │ ├── index.md │ └── package-list ├── executor-rx-android │ ├── alltypes │ │ └── index.md │ ├── com.agoda.boots.executor │ │ ├── -rx-android-executor │ │ │ ├── -init-.md │ │ │ ├── capacity.md │ │ │ ├── execute.md │ │ │ ├── index.md │ │ │ └── is-main-thread-supported.md │ │ └── index.md │ ├── index.md │ └── package-list ├── logger-android │ ├── alltypes │ │ └── index.md │ ├── com.agoda.boots.logger │ │ ├── -android-logger │ │ │ ├── -init-.md │ │ │ ├── -l-o-g_-t-a-g.md │ │ │ ├── index.md │ │ │ └── log.md │ │ └── index.md │ ├── index.md │ └── package-list └── test │ ├── alltypes │ └── index.md │ ├── com.agoda.boots.executor │ ├── -test-executor │ │ ├── -init-.md │ │ ├── capacity.md │ │ ├── execute.md │ │ ├── index.md │ │ └── is-main-thread-supported.md │ └── index.md │ ├── com.agoda.boots │ ├── -mocker │ │ ├── -init-.md │ │ ├── index.md │ │ └── mock.md │ └── index.md │ ├── index.md │ └── package-list ├── executor ├── executor-android │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── agoda │ │ └── boots │ │ └── executor │ │ └── AndroidExecutor.kt ├── executor-coroutine-android │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── com │ │ └── agoda │ │ └── boots │ │ └── executor │ │ └── CoroutineAndroidExecutor.kt ├── executor-coroutine │ ├── .gitignore │ ├── build.gradle │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── agoda │ │ └── boots │ │ └── executor │ │ └── CoroutineExecutor.kt └── executor-rx-android │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── agoda │ └── boots │ └── executor │ └── RxAndroidExecutor.kt ├── gradle.properties ├── gradle ├── scripts │ ├── dependencies.gradle │ ├── publish-android.gradle │ └── publish-java.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── logger └── logger-android │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── agoda │ └── boots │ └── logger │ └── AndroidLogger.kt ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── kotlin │ │ └── com │ │ └── agoda │ │ └── boots │ │ └── sample │ │ ├── BootIdle.kt │ │ ├── JavaActivityTest.kt │ │ ├── KotlinActivityTest.kt │ │ ├── MainActivityTest.kt │ │ └── MainScreen.kt │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── agoda │ │ └── boots │ │ └── sample │ │ └── JavaActivity.java │ ├── kotlin │ └── com │ │ └── agoda │ │ └── boots │ │ └── sample │ │ ├── Bootables.kt │ │ ├── ExecutorEnum.kt │ │ ├── Keys.kt │ │ └── KotlinActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── settings.gradle └── test ├── .gitignore ├── build.gradle └── src ├── main └── kotlin │ └── com │ └── agoda │ └── boots │ ├── Mocker.kt │ └── executor │ └── TestExecutor.kt └── test └── kotlin └── com └── agoda └── boots └── MockerTest.kt /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/.gitignore -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/CLA.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/README.md -------------------------------------------------------------------------------- /boots/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /boots/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/build.gradle -------------------------------------------------------------------------------- /boots/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/proguard-rules.pro -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/Bootable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/Bootable.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/Boots.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/Boots.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/Configuration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/Configuration.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/Errors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/Errors.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/Interfaces.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/Interfaces.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/Key.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/Key.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/Listener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/Listener.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/Report.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/Report.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/Status.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/Status.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/impl/DefaultExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/impl/DefaultExecutor.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/impl/DefaultNotifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/impl/DefaultNotifier.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/impl/DefaultReporter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/impl/DefaultReporter.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/impl/DefaultSequencer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/impl/DefaultSequencer.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/strict/IccFinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/strict/IccFinder.kt -------------------------------------------------------------------------------- /boots/src/main/kotlin/com/agoda/boots/strict/SccFinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/main/kotlin/com/agoda/boots/strict/SccFinder.kt -------------------------------------------------------------------------------- /boots/src/test/kotlin/com/agoda/boots/BootsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/test/kotlin/com/agoda/boots/BootsTest.kt -------------------------------------------------------------------------------- /boots/src/test/kotlin/com/agoda/boots/ErrorsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/test/kotlin/com/agoda/boots/ErrorsTest.kt -------------------------------------------------------------------------------- /boots/src/test/kotlin/com/agoda/boots/KeyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/test/kotlin/com/agoda/boots/KeyTest.kt -------------------------------------------------------------------------------- /boots/src/test/kotlin/com/agoda/boots/impl/DefaultNotifierTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/test/kotlin/com/agoda/boots/impl/DefaultNotifierTest.kt -------------------------------------------------------------------------------- /boots/src/test/kotlin/com/agoda/boots/impl/DefaultReporterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/test/kotlin/com/agoda/boots/impl/DefaultReporterTest.kt -------------------------------------------------------------------------------- /boots/src/test/kotlin/com/agoda/boots/impl/DefaultSequencerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/test/kotlin/com/agoda/boots/impl/DefaultSequencerTest.kt -------------------------------------------------------------------------------- /boots/src/test/kotlin/com/agoda/boots/strict/IccFinderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/test/kotlin/com/agoda/boots/strict/IccFinderTest.kt -------------------------------------------------------------------------------- /boots/src/test/kotlin/com/agoda/boots/strict/SccFinderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/boots/src/test/kotlin/com/agoda/boots/strict/SccFinderTest.kt -------------------------------------------------------------------------------- /docs/boots/alltypes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/alltypes/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-executor/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-executor/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-executor/capacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-executor/capacity.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-executor/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-executor/execute.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-executor/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-executor/is-main-thread-supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-executor/is-main-thread-supported.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-executor/pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-executor/pool.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-notifier/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-notifier/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-notifier/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-notifier/add.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-notifier/boots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-notifier/boots.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-notifier/executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-notifier/executor.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-notifier/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-notifier/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-notifier/listeners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-notifier/listeners.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-notifier/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-notifier/logger.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-notifier/notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-notifier/notify.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-notifier/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-notifier/remove.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-reporter/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-reporter/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-reporter/boots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-reporter/boots.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-reporter/executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-reporter/executor.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-reporter/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-reporter/get.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-reporter/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-reporter/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-reporter/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-reporter/logger.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-reporter/reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-reporter/reports.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-reporter/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-reporter/set.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/boots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/boots.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/check.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/count.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/executor.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/logger.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/map.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/next.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/resolve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/resolve.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/start.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/tasks.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/update.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/-default-sequencer/visit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/-default-sequencer/visit.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.impl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.impl/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.strict/-icc-finder/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.strict/-icc-finder/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.strict/-icc-finder/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.strict/-icc-finder/find.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.strict/-icc-finder/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.strict/-icc-finder/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.strict/-scc-finder/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.strict/-scc-finder/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.strict/-scc-finder/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.strict/-scc-finder/find.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.strict/-scc-finder/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.strict/-scc-finder/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots.strict/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots.strict/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boot-exception/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boot-exception/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boot-exception/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boot-exception/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boot-exception/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boot-exception/message.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-bootable/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-bootable/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-bootable/boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-bootable/boot.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-bootable/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-bootable/dependencies.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-bootable/equals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-bootable/equals.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-bootable/hash-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-bootable/hash-code.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-bootable/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-bootable/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-bootable/is-concurrent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-bootable/is-concurrent.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-bootable/is-critical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-bootable/is-critical.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-bootable/key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-bootable/key.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boots/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boots/add.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boots/boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boots/boot.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boots/configure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boots/configure.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boots/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boots/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boots/invoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boots/invoke.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boots/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boots/report.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boots/reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boots/reset.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boots/subscribe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boots/subscribe.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-boots/unsubscribe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-boots/unsubscribe.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-builder/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-builder/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-builder/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-builder/build.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-builder/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-builder/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-builder/set-executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-builder/set-executor.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-builder/set-logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-builder/set-logger.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-builder/set-notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-builder/set-notifier.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-builder/set-reporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-builder/set-reporter.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-builder/set-sequencer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-builder/set-sequencer.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-builder/set-strict-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-builder/set-strict-mode.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/executor.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/is-strict-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/is-strict-mode.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/logger.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/notifier.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/reporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/reporter.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-configuration/sequencer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-configuration/sequencer.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-executor/-d-e-f-a-u-l-t_-c-a-p-a-c-i-t-y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-executor/-d-e-f-a-u-l-t_-c-a-p-a-c-i-t-y.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-executor/capacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-executor/capacity.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-executor/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-executor/execute.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-executor/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-executor/is-main-thread-supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-executor/is-main-thread-supported.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-holder/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-holder/add.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-holder/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-holder/all.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-holder/boots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-holder/boots.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-holder/critical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-holder/critical.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-holder/excluding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-holder/excluding.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-holder/executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-holder/executor.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-holder/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-holder/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-holder/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-holder/logger.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-holder/multiple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-holder/multiple.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-incorrect-connected-boot-exception/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-incorrect-connected-boot-exception/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-incorrect-connected-boot-exception/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-incorrect-connected-boot-exception/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-incorrect-connected-boot-exception/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-incorrect-connected-boot-exception/message.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-all/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-all/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-all/equals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-all/equals.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-all/hash-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-all/hash-code.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-all/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-all/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-all/to-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-all/to-string.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-critical/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-critical/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-critical/equals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-critical/equals.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-critical/hash-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-critical/hash-code.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-critical/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-critical/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-critical/to-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-critical/to-string.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/contains-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/contains-all.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/contains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/contains.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/equals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/equals.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/hash-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/hash-code.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/is-empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/is-empty.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/is-not-empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/is-not-empty.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/iterator.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/size.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-excluding/to-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-excluding/to-string.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/contains-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/contains-all.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/contains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/contains.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/equals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/equals.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/hash-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/hash-code.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/is-empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/is-empty.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/is-not-empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/is-not-empty.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/iterator.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/size.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-multiple/to-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-multiple/to-string.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-single/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-single/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-single/equals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-single/equals.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-single/hash-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-single/hash-code.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-single/id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-single/id.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-single/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-single/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/-single/to-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/-single/to-string.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/all.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/critical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/critical.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/excluding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/excluding.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/is-booted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/is-booted.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/is-booting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/is-booting.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/is-failed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/is-failed.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/is-idle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/is-idle.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/multiple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/multiple.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/single.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/single.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-key/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-key/status.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-listener/-builder/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-listener/-builder/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-listener/-builder/on-boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-listener/-builder/on-boot.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-listener/-builder/on-failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-listener/-builder/on-failure.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-listener/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-listener/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-listener/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-listener/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-listener/on-boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-listener/on-boot.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-listener/on-failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-listener/on-failure.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-logger/-level/-d-e-b-u-g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-logger/-level/-d-e-b-u-g.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-logger/-level/-e-r-r-o-r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-logger/-level/-e-r-r-o-r.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-logger/-level/-i-n-f-o.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-logger/-level/-i-n-f-o.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-logger/-level/-v-e-r-b-o-s-e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-logger/-level/-v-e-r-b-o-s-e.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-logger/-level/-w-a-r-n-i-n-g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-logger/-level/-w-a-r-n-i-n-g.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-logger/-level/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-logger/-level/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-logger/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-logger/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-logger/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-logger/log.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-notifier/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-notifier/add.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-notifier/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-notifier/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-notifier/notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-notifier/notify.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-notifier/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-notifier/remove.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-report/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-report/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-report/dependent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-report/dependent.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-report/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-report/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-report/key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-report/key.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-report/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-report/start.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-report/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-report/status.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-report/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-report/time.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-reporter/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-reporter/get.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-reporter/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-reporter/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-reporter/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-reporter/set.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-sequencer/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-sequencer/count.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-sequencer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-sequencer/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-sequencer/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-sequencer/next.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-sequencer/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-sequencer/start.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/-booted/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/-booted/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/-booted/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/-booted/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/-booting/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/-booting/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/-booting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/-booting/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/-failed/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/-failed/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/-failed/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/-failed/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/-failed/reason.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/-failed/reason.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/-idle/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/-idle/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/-idle/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/-idle/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/booted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/booted.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/booting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/booting.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/failed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/failed.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/idle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/idle.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-status/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-status/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-strong-connected-boot-exception/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-strong-connected-boot-exception/-init-.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-strong-connected-boot-exception/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-strong-connected-boot-exception/index.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/-strong-connected-boot-exception/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/-strong-connected-boot-exception/message.md -------------------------------------------------------------------------------- /docs/boots/com.agoda.boots/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/com.agoda.boots/index.md -------------------------------------------------------------------------------- /docs/boots/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/index.md -------------------------------------------------------------------------------- /docs/boots/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/boots/package-list -------------------------------------------------------------------------------- /docs/executor-android/alltypes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-android/alltypes/index.md -------------------------------------------------------------------------------- /docs/executor-android/com.agoda.boots.executor/-android-executor/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-android/com.agoda.boots.executor/-android-executor/-init-.md -------------------------------------------------------------------------------- /docs/executor-android/com.agoda.boots.executor/-android-executor/capacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-android/com.agoda.boots.executor/-android-executor/capacity.md -------------------------------------------------------------------------------- /docs/executor-android/com.agoda.boots.executor/-android-executor/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-android/com.agoda.boots.executor/-android-executor/execute.md -------------------------------------------------------------------------------- /docs/executor-android/com.agoda.boots.executor/-android-executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-android/com.agoda.boots.executor/-android-executor/index.md -------------------------------------------------------------------------------- /docs/executor-android/com.agoda.boots.executor/-android-executor/is-main-thread-supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-android/com.agoda.boots.executor/-android-executor/is-main-thread-supported.md -------------------------------------------------------------------------------- /docs/executor-android/com.agoda.boots.executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-android/com.agoda.boots.executor/index.md -------------------------------------------------------------------------------- /docs/executor-android/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-android/index.md -------------------------------------------------------------------------------- /docs/executor-android/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-android/package-list -------------------------------------------------------------------------------- /docs/executor-coroutine-android/alltypes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine-android/alltypes/index.md -------------------------------------------------------------------------------- /docs/executor-coroutine-android/com.agoda.boots.executor/-coroutine-android-executor/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine-android/com.agoda.boots.executor/-coroutine-android-executor/-init-.md -------------------------------------------------------------------------------- /docs/executor-coroutine-android/com.agoda.boots.executor/-coroutine-android-executor/capacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine-android/com.agoda.boots.executor/-coroutine-android-executor/capacity.md -------------------------------------------------------------------------------- /docs/executor-coroutine-android/com.agoda.boots.executor/-coroutine-android-executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine-android/com.agoda.boots.executor/-coroutine-android-executor/index.md -------------------------------------------------------------------------------- /docs/executor-coroutine-android/com.agoda.boots.executor/-coroutine-android-executor/is-main-thread-supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine-android/com.agoda.boots.executor/-coroutine-android-executor/is-main-thread-supported.md -------------------------------------------------------------------------------- /docs/executor-coroutine-android/com.agoda.boots.executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine-android/com.agoda.boots.executor/index.md -------------------------------------------------------------------------------- /docs/executor-coroutine-android/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine-android/index.md -------------------------------------------------------------------------------- /docs/executor-coroutine-android/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine-android/package-list -------------------------------------------------------------------------------- /docs/executor-coroutine/alltypes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine/alltypes/index.md -------------------------------------------------------------------------------- /docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/-init-.md -------------------------------------------------------------------------------- /docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/capacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/capacity.md -------------------------------------------------------------------------------- /docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/execute.md -------------------------------------------------------------------------------- /docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/index.md -------------------------------------------------------------------------------- /docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/is-main-thread-supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine/com.agoda.boots.executor/-coroutine-executor/is-main-thread-supported.md -------------------------------------------------------------------------------- /docs/executor-coroutine/com.agoda.boots.executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine/com.agoda.boots.executor/index.md -------------------------------------------------------------------------------- /docs/executor-coroutine/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine/index.md -------------------------------------------------------------------------------- /docs/executor-coroutine/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-coroutine/package-list -------------------------------------------------------------------------------- /docs/executor-rx-android/alltypes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-rx-android/alltypes/index.md -------------------------------------------------------------------------------- /docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/-init-.md -------------------------------------------------------------------------------- /docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/capacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/capacity.md -------------------------------------------------------------------------------- /docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/execute.md -------------------------------------------------------------------------------- /docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/index.md -------------------------------------------------------------------------------- /docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/is-main-thread-supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-rx-android/com.agoda.boots.executor/-rx-android-executor/is-main-thread-supported.md -------------------------------------------------------------------------------- /docs/executor-rx-android/com.agoda.boots.executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-rx-android/com.agoda.boots.executor/index.md -------------------------------------------------------------------------------- /docs/executor-rx-android/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-rx-android/index.md -------------------------------------------------------------------------------- /docs/executor-rx-android/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/executor-rx-android/package-list -------------------------------------------------------------------------------- /docs/logger-android/alltypes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/logger-android/alltypes/index.md -------------------------------------------------------------------------------- /docs/logger-android/com.agoda.boots.logger/-android-logger/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/logger-android/com.agoda.boots.logger/-android-logger/-init-.md -------------------------------------------------------------------------------- /docs/logger-android/com.agoda.boots.logger/-android-logger/-l-o-g_-t-a-g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/logger-android/com.agoda.boots.logger/-android-logger/-l-o-g_-t-a-g.md -------------------------------------------------------------------------------- /docs/logger-android/com.agoda.boots.logger/-android-logger/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/logger-android/com.agoda.boots.logger/-android-logger/index.md -------------------------------------------------------------------------------- /docs/logger-android/com.agoda.boots.logger/-android-logger/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/logger-android/com.agoda.boots.logger/-android-logger/log.md -------------------------------------------------------------------------------- /docs/logger-android/com.agoda.boots.logger/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/logger-android/com.agoda.boots.logger/index.md -------------------------------------------------------------------------------- /docs/logger-android/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/logger-android/index.md -------------------------------------------------------------------------------- /docs/logger-android/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/logger-android/package-list -------------------------------------------------------------------------------- /docs/test/alltypes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/alltypes/index.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots.executor/-test-executor/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots.executor/-test-executor/-init-.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots.executor/-test-executor/capacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots.executor/-test-executor/capacity.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots.executor/-test-executor/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots.executor/-test-executor/execute.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots.executor/-test-executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots.executor/-test-executor/index.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots.executor/-test-executor/is-main-thread-supported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots.executor/-test-executor/is-main-thread-supported.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots.executor/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots.executor/index.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots/-mocker/-init-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots/-mocker/-init-.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots/-mocker/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots/-mocker/index.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots/-mocker/mock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots/-mocker/mock.md -------------------------------------------------------------------------------- /docs/test/com.agoda.boots/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/com.agoda.boots/index.md -------------------------------------------------------------------------------- /docs/test/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/index.md -------------------------------------------------------------------------------- /docs/test/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/docs/test/package-list -------------------------------------------------------------------------------- /executor/executor-android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /executor/executor-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-android/build.gradle -------------------------------------------------------------------------------- /executor/executor-android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-android/proguard-rules.pro -------------------------------------------------------------------------------- /executor/executor-android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /executor/executor-android/src/main/kotlin/com/agoda/boots/executor/AndroidExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-android/src/main/kotlin/com/agoda/boots/executor/AndroidExecutor.kt -------------------------------------------------------------------------------- /executor/executor-coroutine-android/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /executor/executor-coroutine-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-coroutine-android/build.gradle -------------------------------------------------------------------------------- /executor/executor-coroutine-android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-coroutine-android/proguard-rules.pro -------------------------------------------------------------------------------- /executor/executor-coroutine-android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /executor/executor-coroutine-android/src/main/kotlin/com/agoda/boots/executor/CoroutineAndroidExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-coroutine-android/src/main/kotlin/com/agoda/boots/executor/CoroutineAndroidExecutor.kt -------------------------------------------------------------------------------- /executor/executor-coroutine/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /executor/executor-coroutine/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-coroutine/build.gradle -------------------------------------------------------------------------------- /executor/executor-coroutine/src/main/kotlin/com/agoda/boots/executor/CoroutineExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-coroutine/src/main/kotlin/com/agoda/boots/executor/CoroutineExecutor.kt -------------------------------------------------------------------------------- /executor/executor-rx-android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /executor/executor-rx-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-rx-android/build.gradle -------------------------------------------------------------------------------- /executor/executor-rx-android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-rx-android/proguard-rules.pro -------------------------------------------------------------------------------- /executor/executor-rx-android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /executor/executor-rx-android/src/main/kotlin/com/agoda/boots/executor/RxAndroidExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/executor/executor-rx-android/src/main/kotlin/com/agoda/boots/executor/RxAndroidExecutor.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/scripts/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/gradle/scripts/dependencies.gradle -------------------------------------------------------------------------------- /gradle/scripts/publish-android.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/gradle/scripts/publish-android.gradle -------------------------------------------------------------------------------- /gradle/scripts/publish-java.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/gradle/scripts/publish-java.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/gradlew.bat -------------------------------------------------------------------------------- /logger/logger-android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /logger/logger-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/logger/logger-android/build.gradle -------------------------------------------------------------------------------- /logger/logger-android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/logger/logger-android/proguard-rules.pro -------------------------------------------------------------------------------- /logger/logger-android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /logger/logger-android/src/main/kotlin/com/agoda/boots/logger/AndroidLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/logger/logger-android/src/main/kotlin/com/agoda/boots/logger/AndroidLogger.kt -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/src/androidTest/kotlin/com/agoda/boots/sample/BootIdle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/androidTest/kotlin/com/agoda/boots/sample/BootIdle.kt -------------------------------------------------------------------------------- /sample/src/androidTest/kotlin/com/agoda/boots/sample/JavaActivityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/androidTest/kotlin/com/agoda/boots/sample/JavaActivityTest.kt -------------------------------------------------------------------------------- /sample/src/androidTest/kotlin/com/agoda/boots/sample/KotlinActivityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/androidTest/kotlin/com/agoda/boots/sample/KotlinActivityTest.kt -------------------------------------------------------------------------------- /sample/src/androidTest/kotlin/com/agoda/boots/sample/MainActivityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/androidTest/kotlin/com/agoda/boots/sample/MainActivityTest.kt -------------------------------------------------------------------------------- /sample/src/androidTest/kotlin/com/agoda/boots/sample/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/androidTest/kotlin/com/agoda/boots/sample/MainScreen.kt -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/agoda/boots/sample/JavaActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/java/com/agoda/boots/sample/JavaActivity.java -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/agoda/boots/sample/Bootables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/kotlin/com/agoda/boots/sample/Bootables.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/agoda/boots/sample/ExecutorEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/kotlin/com/agoda/boots/sample/ExecutorEnum.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/agoda/boots/sample/Keys.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/kotlin/com/agoda/boots/sample/Keys.kt -------------------------------------------------------------------------------- /sample/src/main/kotlin/com/agoda/boots/sample/KotlinActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/kotlin/com/agoda/boots/sample/KotlinActivity.kt -------------------------------------------------------------------------------- /sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/settings.gradle -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/test/build.gradle -------------------------------------------------------------------------------- /test/src/main/kotlin/com/agoda/boots/Mocker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/test/src/main/kotlin/com/agoda/boots/Mocker.kt -------------------------------------------------------------------------------- /test/src/main/kotlin/com/agoda/boots/executor/TestExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/test/src/main/kotlin/com/agoda/boots/executor/TestExecutor.kt -------------------------------------------------------------------------------- /test/src/test/kotlin/com/agoda/boots/MockerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agoda-com/boots/HEAD/test/src/test/kotlin/com/agoda/boots/MockerTest.kt --------------------------------------------------------------------------------