Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package apache
    Definition Classes
    org
  • package pekko
    Definition Classes
    apache
  • package pattern

    This package is used as a collection point for usage patterns which involve actors, futures, etc.

    Commonly Used Patterns With Akka

    This package is used as a collection point for usage patterns which involve actors, futures, etc. but are loosely enough coupled to (multiple of) them to present them separately from the core implementation. Currently supported are:

    In Scala the recommended usage is to import the pattern from the package object:

    import org.apache.pekko.pattern.ask
    
    ask(actor, message) // use it directly
    actor ask message   // use it by implicit conversion

    For Java the patterns are available as static methods of the org.apache.pekko.pattern.Patterns class:

    import static org.apache.pekko.pattern.Patterns.ask;
    
    ask(actor, message);
    Definition Classes
    pekko
  • package internal
    Definition Classes
    pattern
  • CircuitBreakerTelemetry

package internal

Type Members

  1. trait CircuitBreakerTelemetry extends AnyRef

    Service Provider Interface (SPI) for collecting metrics from Circuit Breaker.

    Service Provider Interface (SPI) for collecting metrics from Circuit Breaker.

    Implementations must include a single constructor with two arguments: Circuit Breaker id and ExtendedActorSystem. To setup your implementation, add a setting in your application.conf:

    pekko.circuit-breaker.telemetry.implementations += com.example.MyMetrics
    Annotations
    @InternalStableApi()

Ungrouped