An open API service indexing awesome lists of open source software.

https://github.com/funfix/tasks

Task datatype, meant for cross-language interop (Java, Kotlin, Scala)
https://github.com/funfix/tasks

java kotlin scala

Last synced: about 2 months ago
JSON representation

Task datatype, meant for cross-language interop (Java, Kotlin, Scala)

Awesome Lists containing this project

README

          

# Tasks

[![build](https://github.com/funfix/tasks/actions/workflows/build.yaml/badge.svg)](https://github.com/funfix/tasks/actions/workflows/build.yaml) [![maven](https://img.shields.io/maven-central/v/org.funfix/tasks-jvm.svg)](https://central.sonatype.com/artifact/org.funfix/tasks-jvm) [![javadoc](https://javadoc.io/badge2/org.funfix/tasks-jvm/javadoc.svg)](https://javadoc.io/doc/org.funfix/tasks-jvm)

This is a library meant for library authors that want to build libraries that work across Java, Scala, or Kotlin, without having to worry about interoperability with whatever method of I/O that the library is using under the hood.

## Usage

Read the [Javadoc](https://javadoc.io/doc/org.funfix/tasks-jvm/0.3.1/org/funfix/tasks/jvm/package-summary.html).
Better documentation is coming.

---

Maven:
```xml

org.funfix
tasks-jvm
0.3.1

```

Gradle:
```kotlin
dependencies {
implementation("org.funfix:tasks-jvm:0.3.1")
}
```

sbt:
```scala
libraryDependencies += "org.funfix" % "tasks-jvm" % "0.3.1"
```