package protocol
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class AsyncDnsNameResolution(dnsServers: Array[InetSocketAddress]) extends DnsNameResolution with Product with Serializable
- sealed trait DnsNameResolution extends AnyRef
- case class DnsPart(dnsNameResolution: DnsNameResolution, hostNameAliases: Map[String, InetAddress], perUserNameResolution: Boolean) extends Product with Serializable
- case class HttpComponents(coreComponents: CoreComponents, httpProtocol: HttpProtocol, httpEngine: HttpEngine, httpCaches: HttpCaches, httpTxExecutor: HttpTxExecutor) extends ProtocolComponents with Product with Serializable
-
case class
HttpProtocol(baseUrls: List[String], warmUpUrl: Option[String], enginePart: HttpProtocolEnginePart, requestPart: HttpProtocolRequestPart, responsePart: HttpProtocolResponsePart, wsPart: HttpProtocolWsPart, proxyPart: HttpProtocolProxyPart, dnsPart: DnsPart) extends Protocol with Product with Serializable
Class containing the configuration for the HTTP protocol
Class containing the configuration for the HTTP protocol
- baseUrls
the radixes of all the URLs that will be used (eg: http://mywebsite.tld)
- warmUpUrl
the url used to load the TCP stack
- enginePart
the HTTP engine related configuration
- requestPart
the request related configuration
- responsePart
the response related configuration
- wsPart
the WebSocket related configuration
- proxyPart
the Proxy related configuration
- dnsPart
the DNS related configuration
- case class HttpProtocolBuilder(protocol: HttpProtocol, useOpenSsl: Boolean) extends Product with Serializable
- case class HttpProtocolEnginePart(shareConnections: Boolean, maxConnectionsPerHost: Int, virtualHost: Option[Expression[String]], localAddresses: List[InetAddress], enableHttp2: Boolean, http2PriorKnowledge: Map[Remote, Boolean], perUserKeyManagerFactory: Option[(Long) ⇒ KeyManagerFactory]) extends Product with Serializable
- case class HttpProtocolProxyPart(proxy: Option[ProxyServer], proxyExceptions: Seq[String]) extends Product with Serializable
- case class HttpProtocolRequestPart(headers: Map[String, Expression[String]], realm: Option[Expression[Realm]], autoReferer: Boolean, cache: Boolean, disableUrlEncoding: Boolean, silentUri: Option[Pattern], silentResources: Boolean, signatureCalculator: Option[Expression[SignatureCalculator]]) extends Product with Serializable
- case class HttpProtocolResponsePart(followRedirect: Boolean, maxRedirects: Int, strict302Handling: Boolean, responseTransformer: Option[ResponseTransformer], checks: List[HttpCheck], inferHtmlResources: Boolean, inferredHtmlResourcesNaming: (Uri) ⇒ String, htmlResourcesInferringFilters: Option[Filters]) extends Product with Serializable
- case class HttpProtocolWsPart(wsBaseUrls: List[String], reconnect: Boolean, maxReconnects: Option[Int]) extends Product with Serializable
- case class Proxy(host: String, port: Int, securePort: Int, proxyType: ProxyType, credentials: Option[Credentials] = None) extends Product with Serializable
- case class ProxyBuilder(proxy: Proxy) extends Product with Serializable
- sealed trait ProxyType extends AnyRef
- case class Remote(hostname: String, port: Int) extends Product with Serializable
Value Members
- object HttpProtocol extends StrictLogging with Serializable
- object HttpProtocolBuilder extends Serializable
- object HttpProxy extends ProxyType with Product with Serializable
- object JavaDnsNameResolution extends DnsNameResolution with Product with Serializable
- object ProxyBuilder extends Serializable
- object Remote extends Serializable
- object Socks4Proxy extends ProxyType with Product with Serializable
- object Socks5Proxy extends ProxyType with Product with Serializable