primetalk / synapsegrid   1.5.0

GitHub

SynapseGrid is a framework for constructing dynamic low latency data flow systems.

Scala versions: 2.13 2.12 2.11 2.10

SynapseGrid

Build Status

SynapseGrid is an original approach to implement functional reactive programming paradigm in Scala. The library is based on a solid foundation of Petri nets.

A few words about what SynapseGrid is:

  • framework for constructing systems that are:
    • reactive
    • event-driven
    • resilent
  • it resembles other modern event-driven architectures (ScalaRx, Akka Streams, Spark, etc.).

Blog about SynapseGrid

Feature highlights

  1. SynapseGrid allows function composition of "multifunctions" (functions with a few inputs and outputs). It is more flexible than monads composition of Kleisli Arrows.
  2. Strictly typed message handling in Akka actors (more natural than in Typed actors or Typed Channels).
  3. Multi input/multi output functions (multifunctions).
  4. Systems process portions of information ASAP. The grid can be the base of real time systems.
  5. It is possible to nest subsystems (like matreshkas) creating modular systems.
  6. Declarative composition in the form of DataFlow diagram.
  7. Easy to use DSL:
  val a = contact[String]("a")
  val b = contact[String]("b")
  val c = contact[Char]("c")
  a -> b flatMap (_.split("\\s+"))
  a -> c flatMap (_.toCharArray)
  inputs(a)
  outputs(b,c)
  1. Dependency injection replacement (accompanied with Scala traits).
  2. DataFlow diagram for a system can be created easily — system.toDot(): example1 system picture example2 system picture example3 system picture

For details see README in English.

Getting started

Add a dependency to your build:

  • gradle:

    compile ['ru.primetalk:synapse-grid-core_2.11:1.4.7', 'ru.primetalk:synapse-grid-akka_2.11:1.4.7']

    or compile ['ru.primetalk:synapse-grid-core_2.11:1.4.7', 'ru.primetalk:synapse-grid-akka_2.11:1.4.7']

  • sbt:

    libraryDependencies += "ru.primetalk" %% "synapse-grid-core" % "1.4.7" libraryDependencies += "ru.primetalk" %% "synapse-grid-akka" % "1.4.7"

(or any other build system: group: ru.primetalk, artifactId: synapse-grid-core, version: 1.4.7)

Travis build status

  • PR status: Build Status

See also (English)

  1. Walkthrough.
  2. Motivation for SynapseGrid.
  3. License (BSD-like).
  4. Subsystems.
  5. Blog about SynapseGrid
  6. Distrubuted systems
  7. Typed frames.

См. также (See also in Russian)

  1. README по-русски.
  2. Actors support (in Russian).
  3. Лицензия.
  4. Работа с подсистемами.
  5. Blog about SynapseGrid (en)
  6. Распределённые системы.
  7. Строго типизированные фреймы.
  8. Хабрахабр: Строго типизированное представление неполных данных