Skip to content

Alkali is a small and simple actor library written in Kotlin.

License

Notifications You must be signed in to change notification settings

thomasvolk/alkali

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Alkali

Alkali is a small and simple actor library written in Kotlin.

Build Status

Install

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    compile 'com.github.thomasvolk:alkali:RELEASE_1_0_1-SNAPSHOT'
}

API

class HelloWorld : Actor() {
    override fun receive(message: Any) {
        println("Hello $message")
    }
}

val system = ActorSystemBuilder().build()
val actor = system.actor("helloWorld", HelloWorld::class)
actor send "World"

About

Alkali is a small and simple actor library written in Kotlin.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages