Packages

p

sttp.tapir

server

package server

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

Package Members

  1. package internal

Type Members

  1. case class DecodeFailureContext(input: EndpointInput[_], failure: Failure) extends Product with Serializable
  2. type DecodeFailureHandler = (DecodeFailureContext) => DecodeFailureHandling

    Given the context in which a decode failure occurred (the request, the input and the failure), returns the action that should be taken.

    Given the context in which a decode failure occurred (the request, the input and the failure), returns the action that should be taken.

    See also DecodeFailureHandling and DefaultDecodeFailureHandler.

  3. trait DecodeFailureHandling extends AnyRef

    Describes the action to take, when decoding an input of a request fails.

    Describes the action to take, when decoding an input of a request fails. Should another endpoint be tried, or should a response be sent.

  4. case class DefaultDecodeFailureHandler(respondWithStatusCode: (DecodeFailureContext) => Option[StatusCode], response: (StatusCode, String) => DecodeFailureHandling, failureMessage: (DecodeFailureContext) => String) extends DecodeFailureHandler with Product with Serializable

    Create a decode failure handler, which: - decides whether the given decode failure should lead to a response (and if so, with which status code), or return a DecodeFailureHandling.noMatch, using respondWithStatusCode - creates decode failure messages using failureMessage - creates the response using response

  5. case class LogRequestHandling[T](doLogWhenHandled: (String, Option[Throwable]) => T, doLogAllDecodeFailures: (String, Option[Throwable]) => T, doLogLogicExceptions: (String, Throwable) => T, noLog: T, logWhenHandled: Boolean = true, logAllDecodeFailures: Boolean = false, logLogicExceptions: Boolean = true) extends Product with Serializable

    Callbacks to log how a request was handled.

    Callbacks to log how a request was handled.

    T

    Interpreter-specific value representing the log action.

  6. abstract class PartialServerEndpoint[U, I, E, O, -R, F[_]] extends EndpointInputsOps[I, E, O, R] with EndpointOutputsOps[I, E, O, R] with EndpointInfoOps[I, E, O, R] with EndpointMetaOps[I, E, O, R]

    An endpoint, with some of the server logic already provided, and some left unspecified.

    An endpoint, with some of the server logic already provided, and some left unspecified. See Endpoint.serverLogicForCurrent.

    The part of the server logic which is provided transforms some inputs either to an error of type E, or value of type U.

    The part of the server logic which is not provided, transforms a tuple: (U, I) either into an error, or a value of type O.

    Inputs/outputs can be added to partial endpoints as to regular endpoints, however the shape of the error outputs is fixed and cannot be changed.

    U

    Type of partially transformed input.

    I

    Input parameter types.

    E

    Error output parameter types.

    O

    Output parameter types.

    R

    The capabilities that are required by this endpoint's inputs/outputs. Any, if no requirements.

    F

    The effect type used in the provided partial server logic.

  7. case class ServerEndpoint[I, E, O, -R, F[_]](endpoint: Endpoint[I, E, O, R], logic: (MonadError[F]) => (I) => F[Either[E, O]]) extends EndpointInfoOps[I, E, O, R] with EndpointMetaOps[I, E, O, R] with Product with Serializable

    I

    Input parameter types.

    E

    Error output parameter types.

    O

    Output parameter types.

    R

    The capabilities that are required by this endpoint's inputs/outputs. Any, if no requirements.

    F

    The effect type used in the provided server logic.

  8. abstract class ServerEndpointInParts[U, IR, I, E, O, -R, F[_]] extends EndpointInfoOps[I, E, O, R] with EndpointMetaOps[I, E, O, R]

    An endpoint description together with partial server logic.

    An endpoint description together with partial server logic. See Endpoint.serverLogicPart.

    The part of the server logic which is provided transforms some inputs either to an error of type E, or value of type U.

    The part of the server logic which is not provided, transforms a tuple: (U, R) either into an error of type E, or a value of type O.

    U

    The type of the value returned by the partial server logic.

    IR

    Remaining input parameter types, for which logic has yet to be provided.

    I

    Entire input parameter types. I = T + R, where T is the part of the input consumed by the partial logic, and converted to U.

    E

    Error output parameter types.

    O

    Output parameter types.

    R

    The capabilities that are required by this endpoint's inputs/outputs. Any, if no requirements.

    F

    The effect type used in the provided server logic.

Value Members

  1. object DecodeFailureHandling
  2. object ServerDefaults

Inherited from AnyRef

Inherited from Any

Ungrouped