Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. setPoolStripes :: Int -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the number of pool stripes to use. A good setting is equal to the number of CPU cores this codes is running on.

  2. setPortNumber :: PortNumber -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the portnumber to use to connect on every node of the cluster.

  3. setPrepareStrategy :: PrepareStrategy -> Settings -> Settings

    cql-io Database.CQL.IO

    Set strategy to use for preparing statements.

  4. setProtocolVersion :: Version -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the binary protocol version to use.

  5. setResponseTimeout :: NominalDiffTime -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the response timeout of a connection. Requests exceeding the response timeout will fail with a ResponseTimeout exception.

  6. setRetryHandlers :: (forall (m :: Type -> Type) . Monad m => [RetryStatus -> Handler m Bool]) -> RetrySettings -> RetrySettings

    cql-io Database.CQL.IO

    Set the exception handlers that decide whether a request can be retried by the client, i.e. what errors are permissible to retry. For configuring how the retries are performed, see setRetryPolicy.

  7. setRetryPolicy :: RetryPolicy -> RetrySettings -> RetrySettings

    cql-io Database.CQL.IO

    Set the RetryPolicy to apply on retryable exceptions, which determines the number and distribution of retries over time, i.e. how retries are performed. Configuring a retry policy does not specify what errors should actually be retried. See setRetryHandlers.

  8. setRetrySettings :: RetrySettings -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the retry settings to use.

  9. setSSLContext :: SSLContext -> Settings -> Settings

    cql-io Database.CQL.IO

    Set a fully configured SSL context. This will make client server queries use TLS.

  10. setSendTimeout :: NominalDiffTime -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the send timeout of a connection. Requests exceeding the send timeout will cause the connection to be closed and fail with a ConnectionClosed exception.

Page 62 of many | Previous | Next