Package akka.http.impl.engine.server
Class HttpAttributes
- java.lang.Object
-
- akka.http.impl.engine.server.HttpAttributes
-
public class HttpAttributes extends java.lang.Object
INTERNAL API Internally used attributes set in the HTTP pipeline. May potentially be opened up in the future.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HttpAttributes.RemoteAddress
static class
HttpAttributes.RemoteAddress$
static class
HttpAttributes.TLSSessionInfo
INTERNAL API Internally used TLS session info in the HTTP pipeline.static class
HttpAttributes.TLSSessionInfo$
-
Constructor Summary
Constructors Constructor Description HttpAttributes()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static akka.stream.Attributes
empty()
static akka.stream.Attributes
remoteAddress(java.net.InetSocketAddress address)
static akka.stream.Attributes
remoteAddress(scala.Option<java.net.InetSocketAddress> address)
static akka.stream.Attributes
tlsSessionInfo(javax.net.ssl.SSLSession session)
-
-
-
Method Detail
-
remoteAddress
public static akka.stream.Attributes remoteAddress(scala.Option<java.net.InetSocketAddress> address)
-
remoteAddress
public static akka.stream.Attributes remoteAddress(java.net.InetSocketAddress address)
-
tlsSessionInfo
public static akka.stream.Attributes tlsSessionInfo(javax.net.ssl.SSLSession session)
-
empty
public static akka.stream.Attributes empty()
-
-