actor4j-core icon indicating copy to clipboard operation
actor4j-core copied to clipboard

Actor4j is a multi-runtime actor-oriented Java framework.

Build Status Coverage Status

Actor4j - Core

For more information on Actor4j, see the following more complete documentation on actor4j.io.

Status of Development

The Actor4j - Core library (v2.0.x) has no external dependencies and is also compilable as a native image with GraalVM. The minimum requirement is currently Java 17. Within the branch java-8, you find an older Java 8 version. ActorMessage is encapsulated as a Java Record. The Actor4j - Core library is now separated into sdk and runtime to provide more runtimes in the future. A specification exists for the core part of Actor4j.

Installation

I am working on a new version, 2.0.x for Actor4j. In the near future, the new version and other libraries will be available as a Maven dependency as soon as possible. The entire documentation is more related to the new version 2.0.x.

Currently, you can add the following Maven dependency to your pom.xml file:

<dependency>
	<groupId>io.actor4j</groupId>
	<artifactId>actor4j-core</artifactId>
	<version>1.0.2</version>
</dependency>

or a SNAPSHOT (v2.0.0) with JitPack.io

<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>

<dependencies>
	<dependency>
		<groupId>io.actor4j</groupId>
		<artifactId>actor4j-core</artifactId>
		<version>master-SNAPSHOT</version>
	</dependency>
</dependencies>

Last updated: March 27, 2022