-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from Trendyol/checkpoint-api-experimental
Checkpoint API
- Loading branch information
Showing
21 changed files
with
419 additions
and
37 deletions.
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
1 change: 0 additions & 1 deletion
1
transmission-test/src/main/java/com/trendyol/transmissiontest/TransformerTestScope.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
16 changes: 16 additions & 0 deletions
16
transmission/src/main/java/com/trendyol/transmission/Annotations.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.trendyol.transmission | ||
|
||
/** | ||
* Marks internal declarations in Transmission. Internal declarations must not be used outside the library. | ||
* There are no backward compatibility guarantees between different versions of Transmission. | ||
*/ | ||
@RequiresOptIn(level = RequiresOptIn.Level.ERROR) | ||
@Retention(AnnotationRetention.BINARY) | ||
annotation class InternalTransmissionApi | ||
|
||
/** | ||
* Marks experimental API in Transmission. An experimental API can be changed or removed at any time. | ||
*/ | ||
@RequiresOptIn(level = RequiresOptIn.Level.WARNING) | ||
@Retention(AnnotationRetention.BINARY) | ||
annotation class ExperimentalTransmissionApi |
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
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
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
Oops, something went wrong.