Package akka.http.impl.engine.rendering
Class RequestRenderingContext
- java.lang.Object
-
- akka.http.impl.engine.rendering.RequestRenderingContext
-
- All Implemented Interfaces:
java.io.Serializable,scala.Equals,scala.Product
public final class RequestRenderingContext extends java.lang.Object implements scala.Product, java.io.SerializableINTERNAL APIparam: request the request to be rendered param: hostHeader the host header to render (not necessarily contained in the request.headers) param: sendEntityTrigger defined when the request has a
Expect: 100-continueheader; in this case the future will be completed successfully when the request entity is allowed to go out onto the wire; if the future is completed with an error the connection is to be closed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RequestRenderingContext(HttpRequest request, Host hostHeader, scala.Option<scala.concurrent.Future<akka.NotUsed>> sendEntityTrigger)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract static Rapply(T1 v1, T2 v2, T3 v3)HosthostHeader()HttpRequestrequest()scala.Option<scala.concurrent.Future<akka.NotUsed>>sendEntityTrigger()static java.lang.StringtoString()
-
-
-
Constructor Detail
-
RequestRenderingContext
public RequestRenderingContext(HttpRequest request, Host hostHeader, scala.Option<scala.concurrent.Future<akka.NotUsed>> sendEntityTrigger)
-
-
Method Detail
-
apply
public abstract static R apply(T1 v1, T2 v2, T3 v3)
-
toString
public static java.lang.String toString()
-
request
public HttpRequest request()
-
hostHeader
public Host hostHeader()
-
sendEntityTrigger
public scala.Option<scala.concurrent.Future<akka.NotUsed>> sendEntityTrigger()
-
-