This repository has been archived by the owner on Feb 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Deprecate CoroutineWorker, enable the new Memory Model #99
Open
C2H6O
wants to merge
2
commits into
Autodesk:master
Choose a base branch
from
C2H6O:lx/deprecate_CoroutineWorker
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
This file contains 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 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,4 +1,5 @@ | ||
VERSION=0.8.3 | ||
VERSION=0.9.0 | ||
|
||
kotlin.mpp.enableCompatibilityMetadataVariant=true | ||
kotlin.mpp.stability.nowarn=true | ||
kotlin.mpp.stability.nowarn=true | ||
kotlin.native.binary.memoryModel=experimental |
This file contains 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
20 changes: 15 additions & 5 deletions
20
src/commonMain/kotlin/com/autodesk/coroutineworker/Utils.kt
This file contains 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,11 +1,21 @@ | ||
package com.autodesk.coroutineworker | ||
|
||
import kotlinx.coroutines.suspendCancellableCoroutine | ||
|
||
/** | ||
* Bridges a platform's callback-based async method to coroutines, | ||
* ensuring that the coroutine is resumed on a thread appropriate | ||
* for the platform. | ||
* | ||
* [startAsync] is called to start the work. It calls the passed [CompletionLambda] | ||
* when complete, and returns a [CancellationLambda] that can be called to cancel the | ||
* async work | ||
* */ | ||
public expect suspend fun <T> threadSafeSuspendCallback(startAsync: (CompletionLambda<T>) -> CancellationLambda): T | ||
public suspend fun <T> threadSafeSuspendCallback(startAsync: (CompletionLambda<T>) -> CancellationLambda): T { | ||
return suspendCancellableCoroutine { cont -> | ||
val cancellable = startAsync { | ||
if (cont.isActive) { | ||
cont.resumeWith(it) | ||
} | ||
} | ||
cont.invokeOnCancellation { | ||
cancellable() | ||
} | ||
} | ||
} |
40 changes: 0 additions & 40 deletions
40
src/jsMain/kotlin/com/autodesk/coroutineworker/CoroutineWorker.kt
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
src/jvmMain/kotlin/com/autodesk/coroutineworker/CoroutineWorker.kt
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
src/jvmTest/kotlin/com/autodesk/coroutineworker/CoroutineWorkerJVMTest.kt
This file was deleted.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we maybe just leave the documentation below set to the last version that did things differently, and tell people to just use the latest version only if they are using the new memory model?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wait why are we doing a 0.9.0 again? I thought we were gonna do 1.0