Class/Object

gigahorse

Config

Related Docs: object Config | package gigahorse

Permalink

final class Config extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Config
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val authOpt: Option[Realm]

    Permalink

    Set the authentication that will be used for all requests.

  6. val cacheDirectory: Option[File]

    Permalink

    The directory to be used for caching.

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val compressionEnforced: Boolean

    Permalink

    Is HTTP compression enforced.

    Is HTTP compression enforced. (Default: false)

  9. val connectTimeout: FiniteDuration

    Permalink

    The maximum time an HttpClient can wait when connecting to a remote host.

    The maximum time an HttpClient can wait when connecting to a remote host. (Default: 120s)

  10. val connectionTtl: Duration

    Permalink

    The maximum time that a connection should live for in the pool.

  11. val disableUrlEncoding: Boolean

    Permalink

    Whether raw URL should be used.

    Whether raw URL should be used. (Default: false)

  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(o: Any): Boolean

    Permalink
    Definition Classes
    Config → AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. val followRedirects: Boolean

    Permalink

    Is HTTP redirect enabled.

    Is HTTP redirect enabled. (Default: true)

  16. val frameTimeout: FiniteDuration

    Permalink

    The maximum time an HttpClient waits until the stream is framed.

    The maximum time an HttpClient waits until the stream is framed. (Default: 200ms)

  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    Config → AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. val keepAlive: Boolean

    Permalink

    Whether connection pooling should be used.

    Whether connection pooling should be used. (Default: true)

  21. val maxCacheSize: ConfigMemorySize

    Permalink

    The maximum size of the cache.

  22. val maxConnections: Int

    Permalink

    The maximum total number of connections.

    The maximum total number of connections. -1 means no maximum.

  23. val maxConnectionsPerHost: Int

    Permalink

    The maximum number of connections to make per host.

    The maximum number of connections to make per host. -1 means no maximum.

  24. val maxFrameSize: ConfigMemorySize

    Permalink

    The maximum size of a stream fragment.

    The maximum size of a stream fragment. (Default: 1M)

  25. val maxRedirects: Int

    Permalink

    The maximum number of redirects.

    The maximum number of redirects. (Default: 5)

  26. val maxRequestRetry: Int

    Permalink

    The maximum number of times to retry a request if it fails.

    The maximum number of times to retry a request if it fails. (Default: 5)

  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. val pooledConnectionIdleTimeout: Duration

    Permalink

    The time after which a connection that has been idle in the pool should be closed.

  31. val readTimeout: Duration

    Permalink

    The maximum time an HttpClient can stay idle.

    The maximum time an HttpClient can stay idle. (Default: 120s)

  32. val requestTimeout: FiniteDuration

    Permalink

    The maximum time an HttpClient waits until the response is completed.

    The maximum time an HttpClient waits until the response is completed. (Default: 120s)

  33. val ssl: SSLConfigSettings

    Permalink

    The SSL configuration.

  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. def toString(): String

    Permalink
    Definition Classes
    Config → AnyRef → Any
  36. val useProxyProperties: Boolean

    Permalink

    Sets whether HttpClient should use the default http.proxy* system properties to obtain proxy information.

    Sets whether HttpClient should use the default http.proxy* system properties to obtain proxy information. (Default: true) This differs from useProxySelector(boolean) in that HttpClient will use its own logic to handle the system properties, potentially supporting other protocols that the the JDK ProxySelector doesn't. If useProxyProperties is set to true but useProxySelector was also set to true, the latter is preferred. See http://download.oracle.com/javase/1.4.2/docs/guide/net/properties.html

  37. val userAgentOpt: Option[String]

    Permalink

    The USER_AGENT header value

  38. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. val webSocketMaxFrameSize: ConfigMemorySize

    Permalink

    The maximum accepted size of a websocket message fragment.

    The maximum accepted size of a websocket message fragment. (Default: 1M)

  42. def withAuth(username: String, password: String, scheme: AuthScheme): Config

    Permalink
  43. def withAuth(username: String, password: String): Config

    Permalink
  44. def withAuth(auth: Realm): Config

    Permalink
  45. def withAuthOpt(authOpt: Realm): Config

    Permalink
  46. def withAuthOpt(authOpt: Option[Realm]): Config

    Permalink
  47. def withCacheDirectory(cacheDirectory: File): Config

    Permalink
  48. def withCacheDirectory(cacheDirectory: Option[File]): Config

    Permalink
  49. def withCompressionEnforced(compressionEnforced: Boolean): Config

    Permalink
  50. def withConnectTimeout(connectTimeout: FiniteDuration): Config

    Permalink
  51. def withConnectionTtl(connectionTtl: Duration): Config

    Permalink
  52. def withDisableUrlEncoding(disableUrlEncoding: Boolean): Config

    Permalink
  53. def withFollowRedirects(followRedirects: Boolean): Config

    Permalink
  54. def withFrameTimeout(frameTimeout: FiniteDuration): Config

    Permalink
  55. def withKeepAlive(keepAlive: Boolean): Config

    Permalink
  56. def withMaxCacheSize(maxCacheSize: ConfigMemorySize): Config

    Permalink
  57. def withMaxConnections(maxConnections: Int): Config

    Permalink
  58. def withMaxConnectionsPerHost(maxConnectionsPerHost: Int): Config

    Permalink
  59. def withMaxFrameSize(maxFrameSize: ConfigMemorySize): Config

    Permalink
  60. def withMaxRedirects(maxRedirects: Int): Config

    Permalink
  61. def withMaxRequestRetry(maxRequestRetry: Int): Config

    Permalink
  62. def withPooledConnectionIdleTimeout(pooledConnectionIdleTimeout: Duration): Config

    Permalink
  63. def withReadTimeout(readTimeout: Duration): Config

    Permalink
  64. def withRequestTimeout(requestTimeout: FiniteDuration): Config

    Permalink
  65. def withSsl(ssl: SSLConfigSettings): Config

    Permalink
  66. def withUseProxyProperties(useProxyProperties: Boolean): Config

    Permalink
  67. def withUserAgent(userAgent: String): Config

    Permalink
  68. def withUserAgentOpt(userAgentOpt: String): Config

    Permalink
  69. def withUserAgentOpt(userAgentOpt: Option[String]): Config

    Permalink
  70. def withWebSocketMaxFrameSize(webSocketMaxFrameSize: ConfigMemorySize): Config

    Permalink

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped