No description
Find a file
Konrad 'ktoso' Malawski d51b79c95a !per persistAsync
Breaks binary compatibility because adding new methods to Eventsourced
trait. Since akka-persistence is experimental this is ok, yet
source-level compatibility has been perserved thankfuly :-)

Deprecates:
* Rename of EventsourcedProcessor -> PersistentActor
* Processor -> suggest using PersistentActor
* Migration guide for akka-persistence is separate, as wel'll deprecate in minor versions (its experimental)
* Persistent as well as ConfirmablePersistent - since Processor, their
  main user will be removed soon.

Other changes:
* persistAsync works as expected when mixed with persist
* A counter must be kept for pending stashing invocations
* Uses only 1 shared list buffer for persit / persistAsync
* Includes small benchmark
* Docs also include info about not using Persistent() wrapper
* uses java LinkedList, for best performance of append / head on
  persistInvocations; the get(0) is safe, because these msgs only
  come in response to persistInvocations
* Renamed internal *MessagesSuccess/Failure messages because we kept
  small mistakes seeing the class "with s" and "without s" as the same
* Updated everything that refered to EventsourcedProcessor to
  PersistentActor, including samples

Refs #15227

Conflicts:
	akka-docs/rst/project/migration-guides.rst
	akka-persistence/src/main/scala/akka/persistence/JournalProtocol.scala
	akka-persistence/src/main/scala/akka/persistence/Persistent.scala
	akka-persistence/src/test/scala/akka/persistence/PersistentActorSpec.scala
	project/AkkaBuild.scala
2014-06-10 11:09:12 +02:00
akka-actor =act #13678 #15149 Reply with ActorIdentity(None) from deadLetters 2014-06-05 08:28:40 +02:00
akka-actor-tests =act #13678 #15149 Reply with ActorIdentity(None) from deadLetters 2014-06-05 08:28:40 +02:00
akka-agent =pro #15031 separate sbt build file for every module 2014-05-14 10:05:09 +02:00
akka-bench-jmh/src/main/scala/akka/persistence !per persistAsync 2014-06-10 11:09:12 +02:00
akka-camel =pro #15031 separate sbt build file for every module 2014-05-14 10:05:09 +02:00
akka-cluster =pro #15031 separate sbt build file for every module 2014-05-14 10:05:09 +02:00
akka-contrib !per persistAsync 2014-06-10 11:09:12 +02:00
akka-docs !per persistAsync 2014-06-10 11:09:12 +02:00
akka-kernel =pro #15031 separate sbt build file for every module 2014-05-14 10:05:09 +02:00
akka-multi-node-testkit =pro #15031 separate sbt build file for every module 2014-05-14 10:05:09 +02:00
akka-osgi =pro #15031 separate sbt build file for every module 2014-05-14 10:05:09 +02:00
akka-persistence !per persistAsync 2014-06-10 11:09:12 +02:00
akka-remote =rem #13923 Mute log and stack traces in RemoteInitErrorSpec 2014-06-04 09:16:30 +02:00
akka-remote-tests =rem #15109: Separate field in Pass for refuseUid 2014-05-15 14:33:16 +02:00
akka-samples !per persistAsync 2014-06-10 11:09:12 +02:00
akka-slf4j =pro #15031 separate sbt build file for every module 2014-05-14 10:05:09 +02:00
akka-testkit =tes #15357 fix for PrettyDurationSpec 2014-06-04 20:50:26 +02:00
akka-zeromq =pro #15031 separate sbt build file for every module 2014-05-14 10:05:09 +02:00
atmos/src/main/resources Trace all system actors 2013-06-27 16:03:30 +02:00
project !per persistAsync 2014-06-10 11:09:12 +02:00
scripts =pro silence github tagging (curl) 2014-05-30 13:04:02 +02:00
src/main/ls Update ls.implicit.ly sbt settings 2012-03-10 10:30:38 +13:00
.gitignore Update .gitignore 2014-05-21 13:48:06 +02:00
CONTRIBUTING.md =doc switch to GitHub Issues 2014-04-13 18:38:11 +02:00
LICENSE Changes all occurances of Typesafe copyright to extend to 2014. 2014-02-04 21:20:09 -06:00
README.textile =pro clean up build 2013-12-13 21:06:13 +01:00

h1. Akka

We believe that writing correct concurrent, fault-tolerant and scalable applications is too hard. Most of the time it's because we are using the wrong tools and the wrong level of abstraction.

Akka is here to change that.

Using the Actor Model we raise the abstraction level and provide a better platform to build correct concurrent and scalable applications.

For fault-tolerance we adopt the "Let it crash" model which the telecom industry has used with great success to build applications that self-heal and systems that never stop.

Actors also provide the abstraction for transparent distribution and the basis for truly scalable and fault-tolerant applications.

Akka is Open Source and available under the Apache 2 License.

Learn more at "http://akka.io":http://akka.io.