Giter Club home page Giter Club logo

actor4j-core's Introduction

Build Status Coverage Status

Actor4j - Core

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

Status of Development

Most of the Actor4j - Core library (v2.1.x) has no external dependencies (except runtime-extended) and is also compilable as a native image with GraalVM. The minimum requirement is currently Java 17. In the long term, the library is targeting Java 21 (September 2023). 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.x for Actor4j. In the future, the new version and other libraries will be available as a Maven dependency. The entire documentation is more related to the new version 2.1.x.

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

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

or a SNAPSHOT (v2.1.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: January 30, 2023

actor4j-core's People

Contributors

dependabot[bot] avatar relvaner avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

actor4j-core's Issues

Is it production ready?

I really love your actors implementation philosophy.

Did you already use it in production?

why not using enum in PodStatus

instead of using maps, an enum can do the job like this

class enum PodStatus {
  OK(200), CREATED(201), ...
  
  private int status;
  public PodStatus(int status) {this.status = status;}
}

enums already have values method to get all enums

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.