package protocol
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
final
case class
AsyncDnsNameResolution(dnsServers: Array[InetSocketAddress]) extends DnsNameResolution with Product with Serializable
- Annotations
- @SuppressWarnings()
- sealed trait DnsNameResolution extends AnyRef
- final class HttpComponents extends ProtocolComponents
-
final
case class
HttpProtocol(baseUrls: List[String], warmUpUrl: Option[String], enginePart: HttpProtocolEnginePart, requestPart: HttpProtocolRequestPart, responsePart: HttpProtocolResponsePart, wsPart: HttpProtocolWsPart, proxyPart: HttpProtocolProxyPart, dnsPart: HttpProtocolDnsPart) 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
- final case class HttpProtocolBuilder(protocol: HttpProtocol, useOpenSsl: Boolean) extends Product with Serializable
- final case class HttpProtocolDnsPart(dnsNameResolution: DnsNameResolution, hostNameAliases: Map[String, List[InetAddress]], perUserNameResolution: Boolean) extends Product with Serializable
- final case class HttpProtocolEnginePart(shareConnections: Boolean, maxConnectionsPerHost: Int, virtualHost: Option[Expression[String]], localIpV4Addresses: List[InetAddress], localIpV6Addresses: List[InetAddress], enableHttp2: Boolean, http2PriorKnowledge: Map[Remote, Boolean], perUserKeyManagerFactory: Option[(Long) ⇒ KeyManagerFactory]) extends Product with Serializable
- final case class HttpProtocolProxyPart(proxy: Option[ProxyServer], proxyExceptions: Seq[String]) extends Product with Serializable
- final case class HttpProtocolRequestPart(headers: Map[CharSequence, 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
- final 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
- final case class HttpProtocolWsPart(wsBaseUrls: List[String], reconnect: Boolean, maxReconnects: Option[Int]) extends Product with Serializable
- final case class Proxy(host: String, port: Int, securePort: Int, proxyType: ProxyType, credentials: Option[Credentials]) extends Product with Serializable
- final class ProxyBuilder extends AnyRef
- sealed trait ProxyType extends AnyRef
- final class Remote extends AnyRef
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
- object Remote
- object Socks4Proxy extends ProxyType with Product with Serializable
- object Socks5Proxy extends ProxyType with Product with Serializable