- 
 
- 
  Notifications
 You must be signed in to change notification settings 
- Fork 115
Refactors #285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
 
  Merged
 Refactors #285
Changes from all commits
 Commits
 
 
 Show all changes
 
 
 7 commits
 
 
 Select commit
 Hold shift + click to select a range
 
 e32fcb5
 
 refactor: clean up compiler and misc XML configurations
 
 
 hoc081098 65a05f1
 
 refactor: rename getUsers to observeUsers for clarity and consistency
 
 
 hoc081098 cfbb06e
 
 refactor: update coroutine dispatcher checks and improve code style s...
 
 
 hoc081098 d2d0401
 
 refactor: change UserError to extend RuntimeException for better erro...
 
 
 hoc081098 c69cc03
 
 chore: update copyright year in LICENSE file to 2025
 
 
 hoc081098 fee0361
 
 refactor: remove unnecessary Timber logging from collectIn function
 
 
 hoc081098 f9443f3
 
 Apply suggestion from @Copilot
 
 
 hoc081098 File filter
Filter by extension
Conversations
 Failed to load comments. 
 
 
 
  Loading
 
 Jump to
 
 Jump to file
 
 
 
 Failed to load files. 
 
 
 
  Loading
 
 Diff view
Diff view
There are no files selected for viewing
 
 
 
 35 changes: 35 additions & 0 deletions
 
 
 
 .idea/codeStyles/Project.xml
 
 
 
 
  
 
 
 
 
 
 Oops, something went wrong.
 
 
 
 
 
 
 11 changes: 0 additions & 11 deletions
 
 
 
 .idea/compiler.xml
 
 
 
 
  
 
 
 
 
 
 Oops, something went wrong.
 
 
 
 
 
 
 2 changes: 1 addition & 1 deletion
 
 
 
 .idea/kotlinc.xml
 
 
 
 
  
 
 
 
 
 
 Oops, something went wrong.
 
 
 
 
 
 
 2 changes: 2 additions & 0 deletions
 
 
 
 .idea/misc.xml
 
 
 
 
  
 
 
 
 
 
 Oops, something went wrong.
 
 
 
 
 
 
 2 changes: 1 addition & 1 deletion
 
 
 
 LICENSE
 
 
 
 
  
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 Binary file modified
 
 
 buildSrc/gradle/wrapper/gradle-wrapper.jar
 
 
 
 
  
 
 
 
 
 Binary file not shown.
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 
 17 changes: 11 additions & 6 deletions
 
 
 
 core-ui/src/main/java/com/hoc/flowmvi/core_ui/debugCheckImmediateMainDispatcher.kt
 
 
 
 
  
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -1,17 +1,22 @@ | ||
| package com.hoc.flowmvi.core_ui | ||
|  | ||
| import kotlin.coroutines.ContinuationInterceptor | ||
| import kotlinx.coroutines.CoroutineDispatcher | ||
| import kotlinx.coroutines.Dispatchers | ||
| import kotlinx.coroutines.currentCoroutineContext | ||
| import timber.log.Timber | ||
|  | ||
| suspend fun debugCheckImmediateMainDispatcher() { | ||
| @OptIn(ExperimentalStdlibApi::class) | ||
| suspend inline fun debugCheckImmediateMainDispatcher() { | ||
| if (BuildConfig.DEBUG) { | ||
| val interceptor = currentCoroutineContext()[ContinuationInterceptor] | ||
| Timber.d("debugCheckImmediateMainDispatcher: interceptor=$interceptor") | ||
| val dispatcher = checkNotNull(currentCoroutineContext()[CoroutineDispatcher]) { | ||
| "Expected CoroutineDispatcher in current CoroutineContext but was null" | ||
| }.also { Timber.d("debugCheckImmediateMainDispatcher: dispatcher=$it") } | ||
|  | ||
| check(interceptor === Dispatchers.Main.immediate) { | ||
| "Expected ContinuationInterceptor to be Dispatchers.Main.immediate but was $interceptor" | ||
| check( | ||
| dispatcher === Dispatchers.Main.immediate || | ||
| !dispatcher.isDispatchNeeded(Dispatchers.Main.immediate), | ||
| ) { | ||
| "Expected dispatcher to be Dispatchers.Main.immediate but was $dispatcher" | ||
| } | ||
| } | ||
| } | ||
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 
 This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
 Learn more about bidirectional Unicode characters
 
 
 
 
 
 
 Oops, something went wrong.
 
 
 
 
 Oops, something went wrong.
 
 
 
 Add this suggestion to a batch that can be applied as a single commit.
 This suggestion is invalid because no changes were made to the code.
 Suggestions cannot be applied while the pull request is closed.
 Suggestions cannot be applied while viewing a subset of changes.
 Only one suggestion per line can be applied in a batch.
 Add this suggestion to a batch that can be applied as a single commit.
 Applying suggestions on deleted lines is not supported.
 You must change the existing code in this line in order to create a valid suggestion.
 Outdated suggestions cannot be applied.
 This suggestion has been applied or marked resolved.
 Suggestions cannot be applied from pending reviews.
 Suggestions cannot be applied on multi-line comments.
 Suggestions cannot be applied while the pull request is queued to merge.
 Suggestion cannot be applied right now. Please check back later.