object HttpServerLogic extends Serializable
Creates HttpServerLogics that can be used to write data to an outlet that has been received by PUT or POST requests.
- Source
- HttpServerLogic.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HttpServerLogic
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def default[Out](server: Server, outlet: CodecOutlet[Out], rejectionHandler: Option[RejectionHandler] = None)(implicit context: AkkaStreamletContext, fbu: FromByteStringUnmarshaller[Out]): HttpServerLogic
Creates a default HttpServerLogic that writes requests to an outlet.
Creates a default HttpServerLogic that writes requests to an outlet.
An example of a rejection handler that can be used here is presented below:
val rejectionHandler = RejectionHandler .newBuilder() .handle { case RequestEntityExpectedRejection => { complete((StatusCodes.BadRequest, "no data sent")) } } .handleNotFound { complete((StatusCodes.NotFound, "What you are looking for is gone.")) } .result()
- final def defaultRoute[Out](handler: Option[RejectionHandler], writer: WritableSinkRef[Out])(implicit fru: FromRequestUnmarshaller[Out]): Route
- final def defaultStreaming[Out](server: Server, outlet: CodecOutlet[Out])(implicit context: AkkaStreamletContext, fbs: FromByteStringUnmarshaller[Out], ess: EntityStreamingSupport): HttpServerLogic
- final def defaultStreamingRoute[Out](writer: WritableSinkRef[Out])(implicit mat: Materializer, ec: ExecutionContext, fbs: FromByteStringUnmarshaller[Out], ess: EntityStreamingSupport): Route
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])