Packages

  • package root
    Definition Classes
    root
  • package akka
    Definition Classes
    root
  • package projection
    Definition Classes
    akka
  • package grpc
    Definition Classes
    projection
  • package consumer
    Definition Classes
    grpc
  • package scaladsl
    Definition Classes
    consumer
  • object EventProducerPushDestination

    A passive consumer service for event producer push that can be bound as a gRPC endpoint accepting active producers pushing events, for example to run a projection piercing firewalls or NAT.

    A passive consumer service for event producer push that can be bound as a gRPC endpoint accepting active producers pushing events, for example to run a projection piercing firewalls or NAT. Events are pushed directly into the configured journal and can then be consumed through a local projection. A producer can push events for multiple entities but no two producer are allowed to push events for the same entity, at the same time.

    The event consumer service is not needed for normal projections over gRPC where the consuming side can access and initiate connections to the producing side.

    Producers are started using the akka.projection.grpc.producer.scaladsl.EventProducerPush API.

    Definition Classes
    scaladsl
  • Transformation

object Transformation

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Transformation
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val empty: Transformation

    Starting point for building Transformation.

    Starting point for building Transformation. Registrations of actual transformations must be added. Use Transformation.identity to pass through each event as is.

  2. val identity: Transformation

    No transformation.

    No transformation. Pass through each event as is.