o

akka.grpc.javadsl

ServiceHandler

object ServiceHandler

Annotations
@ApiMayChange()
Source
ServiceHandler.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ServiceHandler
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def concatOrNotFound(handlers: Function[HttpRequest, CompletionStage[HttpResponse]]*): Function[HttpRequest, CompletionStage[HttpResponse]]

    This is an alias for handler.

    This is an alias for handler.

    Annotations
    @varargs()
  2. def handler(handlers: Function[HttpRequest, CompletionStage[HttpResponse]]*): Function[HttpRequest, CompletionStage[HttpResponse]]

    Creates a HttpRequest to HttpResponse handler for gRPC services that can be used in for example Http().bindAndHandleAsync for the generated partial function handlers:

    Creates a HttpRequest to HttpResponse handler for gRPC services that can be used in for example Http().bindAndHandleAsync for the generated partial function handlers:

    • If the request is not handled by one of the provided handlers, a _404: Not Found_ response is produced.
    Annotations
    @varargs()