Packages

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. 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.javadsl.EventProducerPush API.

Source
EventProducerPushDestination.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EventProducerPushDestination
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def create(acceptedStreamId: String, protobufDescriptors: List[FileDescriptor], system: ActorSystem[_]): EventProducerPushDestination

    acceptedStreamId

    The stream id that the producers must use for this destination

    protobufDescriptors

    When using protobuf as event wire format, rather than direct Akka Serialization, all message descriptors needs to be listed up front when creating the destination. If not using protobuf encoded events, use an empty list.

  2. def grpcServiceHandler(eventConsumers: Set[EventProducerPushDestination], system: ActorSystem[_]): Function[HttpRequest, CompletionStage[HttpResponse]]
  3. def grpcServiceHandler(eventConsumer: EventProducerPushDestination, system: ActorSystem[_]): Function[HttpRequest, CompletionStage[HttpResponse]]