úΪ¥µH      !"#$%&'()*+,-./0123456789:;<=> ? @ A B C D E F G &Resource pool construction parameters.(c) 2014 Peter TrakoBSD3peter.trsko@gmail.comunstable (internal module)!GHC specific language extensions.Safe!"05SParameters of resource pool that describe things like its internal structure. See   for details. Instance for H introduced in version 0.2. }Lens for accessing stripe count. The number of distinct sub-pools to maintain. The smallest acceptable value is 1 (default). …Lens for accessing amount of time for which an unused resource is kept open. The smallest acceptable value is 0.5 seconds (default). vLens for accessing maximum number of resources to keep open per stripe. The smallest acceptable value is 1 (default). ?Check if all parameters for underlying resource pool are valid:  >= 16 Number of connection sub-pools. Keeping it set to 1 is good for most applications.  >= 1J Maximum number of connections in each stripe. Totally there can be   *  $ open connections simultaneously.  >= 0.5¥ Property specified for how long connection will be kept alive after it is released by back to the pool before it is automatically closed. Value is in seconds.For more details see  .Since version 0.1.1.0.   = 1   = 0.5   = 1  Parameters to validate.*Either error message or the same value of  passed as a first argument.    PHandlerParams data type which is passed to individual connection.(c) 2015 Peter TrakoBSD3peter.trsko@gmail.comunstable (internal module)!GHC specific language extensions.Safe05dAdditional parameters passed to connection handler that aren't part of specific connection context.Since version 0.1.3.See  for details._Lens for accessing read buffer size that handler should use when reading data from connection.Since version 0.1.3.  = 32768 {Package streaming-commons < 0.1.13 used value 4096, streaming-commons == 0.1.13 used 32768, which is 8 * 4096, based on: 3https://github.com/fpco/streaming-commons/issues/22 issue #22;Helper functions that aren't provided by streaming-commons.(c) 2014-2016 Peter TrakoBSD3peter.trsko@gmail.comunstable (internal module)!GHC specific language extensions.None: Wrapper for N with a type signature that is more natural for implementing a TCP specific  ..Definition changed in version 0.1.3 and 0.2.1. Simplified   and  % that provides only construction of ' and passing it to a callback function..Definition changed in version 0.1.3 and 0.2.1. Wrapper for I that takes # instead of individual parameters. Construct 8 that are passed to individual TCP connection handlers.Since version 0.1.3. Wrapper for V with a type signature that is more natural for implementing a UNIX Socket specific  ..Definition changed in version 0.1.3 and 0.2.1. Simplified   and  % that provides only construction of ' and passing it to a callback function..Definition changed in version 0.1.3 and 0.2.1. Construct @ that are passed to individual UNIX socket connection handlers.Since version 0.1.3.-Parameters passed down to connection handler ( -> m r) as part of definition of . Since version 0.1.3.,Buffer size used while reading from socket. Since version 0.1.3.-Parameters passed down to connection handler ( -> m r) as part of definition of . Since version 0.1.3.,Buffer size used while reading from socket. Since version 0.1.3.=ConnectionPool data type which is a specialized Pool wrapper.(c) 2014-2015 Peter TrakoBSD3peter.trsko@gmail.comunstable (internal module)!GHC specific language extensions.None !"#05:<=? Since version 0.2.!Lens for accessing " wrapped in a data type."Simple specialized wrapper for J.,Definition changed in version 0.1.3 and 0.2.  Instance for H introduced in version 0.2.$See & for details.$Since version 0.1.3; changed in 0.2.%See ' for details.Since version 0.1.3.&,Lens for accessing underlying resource pool J (connection, connectionInfo). Where  connection$ represents network connection and connectionInfoX is a protocol specific information associated with the same network connection as the  connection is.$Since version 0.1.3; changed in 0.2.'‡Lens for accessing parameters passed down to connection handler. These information will usually be implementation specific. E.g. for  5https://hackage.haskell.org/package/streaming-commonsstreaming-commonsT >= 1.13 we use this to pass around read buffer size, for more details see module *Data.ConnectionPool.Internal.HandlerParams.Since version 0.1.3.(Specialized wrapper for K%, see its documentation for details.Definition changed in version 0.1.3 and version 0.2.)Specialized wrapper for L.Changed in version 0.2.*Specialized wrapper for M.Since version 0.2.+·Destroy all connections that might be still open in a connection pool. This is useful when one needs to release all resources at once and not to wait for idle timeout to be reached.For more details see N.Since version 0.1.1.0.,Since version 0.1.3. !"#$%&'(8Data type passed down to individual connection handlers.Since version 0.1.3./Acquire a connection which is represented by a  connectionß. There might be additional information associated with specific connection that we pass as a sencond value in a tuple. Such information are considered read only and aren't passed to release function (see next argument).Changed in version 0.2./Release a connection which is represented by a  connection.Changed in version 0.2.Data type representing all K$ parameters that describe internal J parameters.OCreated connection pool that is parametrised by additional connection details.)*+, !"#%$&'()*+ "#$%&' !(+)* !"#$%&'()*+,=Family of connection pools specialized by transport protocol.(c) 2014-2015 Peter TrakoBSD3peter.trsko@gmail.comstable!GHC specific language extensions.Safe+/0DR.>Family of connection pools parametrised by transport protocol.EDefinition changed version 0.2 to be kind polymorphic (only on GHC >= 87.10) and became part of stable API by being moved in to Data.ConnectionPool.Family module.....1Type class for common connection pool operations.(c) 2015 Peter TrakoBSD3peter.trsko@gmail.comunstable!GHC specific language extensions.Safe+:DR/¡Type class for common connection pool operations. It intentionally doesn't handle connection pool creation, which is best left to dedicated smart constructors.Since version 0.2.0-Data passed to individual connection handler.1fTemporarily take a connection from a pool, run handler with it, and return it to the pool afterwards.Since version 0.2.2 Similar to 1I, but only performs action if a connection could be taken from the pool without blocking. Otherwise, tryWithResource returns immediately with Nothing» (ie. the action function is not called). Conversely, if a connection can be acquired from the pool without blocking, the action is performed and it's result is returned, wrapped in a Just.Since version 0.2.3·Destroy all connections that might be still open in a connection pool. This is useful when one needs to release all resources at once and not to wait for idle timeout to be reached.Since version 0.2./0123/0321/0123/0123=Family of connection pools specialized by transport protocol.(c) 2014-2016 Peter TrakoBSD3peter.trsko@gmail.comunstable (internal module)!GHC specific language extensions.None +/059;<=DR4<Type tag used to specialize connection pool for TCP clients. Instance for H introduced in version 0.2.5'Create connection pool for TCP clients.6™Temporarily take a TCP connection from a pool, run client with it, and return it to the pool afterwards. For details how connections are allocated see  .7 Similar to 1M, but only performs action if a TCP connection could be taken from the pool without blocking. Otherwise, tryWithResource returns immediately with O» (ie. the action function is not called). Conversely, if a connection can be acquired from the pool without blocking, the action is performed and it's result is returned, wrapped in a Just.Since version 0.2.8»Destroy all TCP connections that might be still open in a connection pool. This is useful when one needs to release all resources at once and not to wait for idle timeout to be reached.For more details see .Since version 0.1.1.0.9Defined using: 1 = 6 3 = 8 Since version 0.2.:Since version 0.2.P Connection pool for TCP clients.,Definition changed in version 0.1.3 and 0.2. Instances for H and Q introduced in version 0.2. 4R56789:P.R45678.45678456789:PR =Family of connection pools specialized by transport protocol.(c) 2014-2016 Peter TrakoBSD3peter.trsko@gmail.comunstable (internal module)!GHC specific language extensions.None+/059;<=DLR>DType tag used to specialize connection pool for UNIX Socket clients. Instance for H introduced in version 0.2.?0Create connection pool for UNIX Sockets clients.@¢Temporarily take a UNIX Sockets connection from a pool, run client with it, and return it to the pool afterwards. For details how connections are allocated see  .A Similar to 1V, but only performs action if a UNIX Sockets connection could be taken from the pool without blocking. Otherwise, tryWithResource returns immediately with Nothing» (ie. the action function is not called). Conversely, if a connection can be acquired from the pool without blocking, the action is performed and it's result is returned, wrapped in a Just.Since version 0.2.BÄDestroy all UNIX Sockets connections that might be still open in a connection pool. This is useful when one needs to release all resources at once and not to wait for idle timeout to be reached.For more details see .Since version 0.1.1.0.CDefined using: 1 = @ 3 = B Since version 0.2.DSince version 0.2.S(Connection pool for UNIX Socket clients.,Definition changed in version 0.1.3 and 0.2. Instances for H and Q introduced in version 0.2. >T?@ABCDS.T>?@AB.>?@AB>?@ABCDST1Connection pools for various transport protocols.(c) 2014-2016 Peter TrakoBSD3peter.trsko@gmail.comunstable!GHC specific language extensions.None ./032145678>?@AB. 45678>?@AB/0123U !"#$%&''()*+,-./01234567789:;< =>?@7AB =>CDEFGHI@?J K L M N O P Q @ ? RSTU VW W W W XW SYZ[S\]^ _ `a,connection-pool-0.2.1-FnRFrUPenjkD5VjSuGxxKRData.ConnectionPool/Data.ConnectionPool.Internal.ResourcePoolParams*Data.ConnectionPool.Internal.HandlerParams&Data.ConnectionPool.Internal.Streaming+Data.ConnectionPool.Internal.ConnectionPoolData.ConnectionPool.FamilyData.ConnectionPool.Class Data.ConnectionPool.Internal.TCP!Data.ConnectionPool.Internal.Unix Data.Pool createPoolwithConnectionData.Streaming.Network runTCPClient runTCPServer runUnixClient runUnixServer withResourcePooldestroyAllResources/streaming-commons-0.1.16-1tsbUr6VAbrCpghlRb8m8cData.Streaming.Network.InternalClientSettingsClientSettingsUnix AppDataUnixAppDataResourcePoolParams_numberOfStripes_resourceIdleTimeout_numberOfResourcesPerStripenumberOfStripesresourceIdleTimeoutnumberOfResourcesPerStripevalidateResourcePoolParams$fDefaultResourcePoolParams$fDataResourcePoolParams$fGenericResourcePoolParams$fShowResourcePoolParams HandlerParams_readBufferSizereadBufferSize$fDefaultHandlerParams$fDataHandlerParams$fGenericHandlerParams$fShowHandlerParams runTcpApp runTcpAppImplacquireTcpClientConnectionfromClientSettings runUnixApprunUnixAppImplfromClientSettingsUnixHasConnectionPoolconnectionPoolConnectionPool _resourcePool_handlerParams resourcePool handlerParamscreateConnectionPooltryWithConnectiondestroyAllConnections$fShowConnectionPool$fGenericConnectionPoolConnectionPoolFor HandlerData TcpClientcreateTcpClientPoolwithTcpClientConnectiontryWithTcpClientConnectiondestroyAllTcpClientConnections $fConnectionPoolForTYPETcpClient<$fHasConnectionPoolHandlerParamsSocketSockAddrConnectionPool$fGenericTcpClient UnixClientcreateUnixClientPoolwithUnixClientConnectiontryWithUnixClientConnectiondestroyAllUnixClientConnections!$fConnectionPoolForTYPEUnixClient6$fHasConnectionPoolHandlerParamsSocket()ConnectionPool$fGenericUnixClientbase GHC.GenericsGenericgetSocketFamilyTCP,resource-pool-0.2.3.2-DrDbnKAVr4d6lusOB4rlhAtryWithResourceGHC.BaseNothing D:R:ConnectionPoolTYPETcpClient0GHC.ShowShowTcpConnectionPool!D:R:ConnectionPoolTYPEUnixClient0UnixConnectionPool