• Home
  • Search Tags
  • About

akka

Topics related to akka:

Getting started with akka

Akka is an open-source toolkit and runtime simplifying the construction of concurrent and distributed applications on the JVM. It implements the actor model known from Erlang.


It should also mention any large subjects within akka, and link out to the related topics. Since the Documentation for akka is new, you may need to create initial versions of those related topics.

Actor DSL

Dispatchers

akka-streams custom shapes

akka provides some pre-defined shapes, that should probably fit 99.9% of your usage. creating a new shape should only be done in some very rare cases. the pre-defined shapes are:

  • Source - 1 outlet, no inlets
  • Sink - 1 inlet, no outlets
  • Flow - 1 inlet, 1 outlet
  • BidiFlow - 2 inlets, 2 outlets
  • Closed - no inlets, no outlets
  • FanInN - N inlets (N <= 22), 1 outlet
  • FanOutN - N outlets (N <= 22), 1 inlet
  • UniformFanIn - any number of inlets of the same type, 1 outlet
  • UniformFanOut - any number of outlets of the same type, 1 inlet
  • Amorphous - any number of inlets or outlets, but untyped.

Hello world

Injecting dependencies into an actor

Akka Streams

Supervision and Monitoring in Akka

References: akka.io/docs

Check out my blog: https://blog.knoldus.com/2016/08/07/supervision-and-monitoring-in-akka/

Akka HTTP

Content on the page is taken from Stack Overflow Documentation

This site is NOT affiliated with Stack Overflow or any of the contributors. | Privacy Policy | Terms of Service