-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update after release
v1.0.0-Alpha29
📦
- Loading branch information
Showing
12 changed files
with
192 additions
and
143 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
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,34 @@ | ||
# 🦝 `Cffu` kotlin support 🍩 | ||
|
||
<p align="center"> | ||
<a href="https://kotlinlang.org"><img src="https://img.shields.io/badge/Kotlin-1.6+-7F52FF.svg?logo=kotlin&logoColor=white" alt="Kotlin"></a> | ||
<a href="https://central.sonatype.com/artifact/io.foldright/cffu-kotlin/0.9.0/versions"><img src="https://img.shields.io/maven-central/v/io.foldright/cffu-kotlin?logo=apache-maven&logoColor=white" alt="Maven Central"></a> | ||
<a href="https://foldright.io/api-docs/cffu-kotlin/"><img src="https://img.shields.io/github/release/foldright/cffu?label=dokka&color=339933&logo=kotlin&logoColor=white" alt="dokka"></a> | ||
</p> | ||
|
||
This module provides the extension methods to leverage Kotlin language. | ||
|
||
- `Kotlin API` documentation(dokka): https://foldright.io/api-docs/cffu-kotlin/ | ||
- `Kotlin extensions`: | ||
- [`CffuExtensions.kt`](src/main/java/io/foldright/cffu/kotlin/CffuExtensions.kt) | ||
- [`CompletableFutureExtensions.kt`](src/main/java/io/foldright/cffu/kotlin/CompletableFutureExtensions.kt) | ||
- Dependency: | ||
- For `Maven` projects: | ||
|
||
```xml | ||
<dependency> | ||
<groupId>io.foldright</groupId> | ||
<artifactId>cffu-kotlin</artifactId> | ||
<version>1.0.0-Alpha29</version> | ||
</dependency> | ||
``` | ||
- For `Gradle` projects: | ||
|
||
```groovy | ||
// Gradle Kotlin DSL | ||
implementation("io.foldright:cffu-kotlin:1.0.0-Alpha29") | ||
``` | ||
```groovy | ||
// Gradle Groovy DSL | ||
implementation 'io.foldright:cffu-kotlin:1.0.0-Alpha29' | ||
``` |
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,30 @@ | ||
# Guava ListenableFuture Integration with CompletableFuture | ||
|
||
<p align="center"> | ||
<a href="https://central.sonatype.com/artifact/io.foldright/cffu-listenable-future/0.9.0/versions"><img src="https://img.shields.io/maven-central/v/io.foldright/cffu-listenable-future?logo=apache-maven&logoColor=white" alt="Maven Central"></a> | ||
<a href="https://foldright.io/api-docs/cffu-listenable-future/"><img src="https://img.shields.io/github/release/foldright/cffu?label=dokka&color=339933&logo=kotlin&logoColor=white" alt="dokka"></a> | ||
</p> | ||
|
||
- Sources: | ||
- [`ListenableFutureUtils.java`](src/main/java/io/foldright/cffu/lf/ListenableFutureUtils.java) | ||
- [`ListenableFutureExtensions.kt`](src/main/java/io/foldright/cffu/lf/kotlin/ListenableFutureExtensions.kt) | ||
- Dependency: | ||
- For `Maven` projects: | ||
|
||
```xml | ||
<dependency> | ||
<groupId>io.foldright</groupId> | ||
<artifactId>cffu-listenable-future</artifactId> | ||
<version>1.0.0-Alpha29</version> | ||
</dependency> | ||
``` | ||
- For `Gradle` projects: | ||
|
||
```groovy | ||
// Gradle Kotlin DSL | ||
implementation("io.foldright:cffu-listenable-future:1.0.0-Alpha29") | ||
``` | ||
```groovy | ||
// Gradle Groovy DSL | ||
implementation 'io.foldright:cffu-listenable-future:1.0.0-Alpha29' | ||
``` |
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
2 changes: 1 addition & 1 deletion
2
...o/foldright/lf/ListenableFutureUtils.java → ...dright/cffu/lf/ListenableFutureUtils.java
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
4 changes: 2 additions & 2 deletions
4
...t/lf/kotlin/ListenableFutureExtensions.kt → ...u/lf/kotlin/ListenableFutureExtensions.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
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
8 changes: 4 additions & 4 deletions
8
.../kotlin/ListenableFutureExtensionsTest.kt → .../kotlin/ListenableFutureExtensionsTest.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
2 changes: 1 addition & 1 deletion
2
...udy/ListenableFutureUsageStudyCaseTest.kt → ...udy/ListenableFutureUsageStudyCaseTest.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
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