Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2015-04-05 | 896 Bytes | |
Version 0.2.0 source code.tar.gz | 2015-04-05 | 404.7 kB | |
Version 0.2.0 source code.zip | 2015-04-05 | 659.3 kB | |
Totals: 3 Items | 1.1 MB | 0 |
Version 0.2.0 is the first feature release that addresses feedback received from the open source community.
Major Changes - All code generation is now performed at runtime with bytecode generation. - Support for Scala and other JVM based languages in addition to Java. - PostgreSQL provider contributed by @SakeSushiBig. - Scala sample by @voronaam. - Compile time code generation has now been entirely removed.
Minor Changes - Jetty version update for security issue fix from @based2. - Linux shell scripts for chat sample from @voronaam. - Various smaller changes and fixes.
API Changes The following ways to access actors have been removed:
:::java
OrbitStage.getReference(ISomeActor.class, "id");
SomeActorFactory.getReference("id");
You should now use the following unified actor reference accessor:
:::java
IActor.getReference(ISomeActor.class, "id");