All Downloads are FREE. Search and download functionalities are using the official Maven repository.

izumi.idealingua.runtime.rpc.IRTServerMiddleware.scala Maven / Gradle / Ivy

The newest version!
package izumi.idealingua.runtime.rpc

import io.circe.Json

trait IRTServerMiddleware[F[_, _], C] {
  def priority: Int
  def apply(
    methodId: IRTMethodId
  )(context: C,
    parsedBody: Json,
  )(next: => F[Throwable, Json]
  ): F[Throwable, Json]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy