Skip to content

Commit 99cd4a4

Browse files
authored
Mark RedisConnectionPool as final (#83)
1 parent 43ea6af commit 99cd4a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/RediStack/ConnectionPool/RedisConnectionPool.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import Logging
2626
/// Note that `RedisConnectionPool` is entirely thread-safe, even though all of its connections belong to a
2727
/// single `EventLoop`: if callers call the API from a different `EventLoop` (or from no `EventLoop` at all)
2828
/// `RedisConnectionPool` will ensure that the call is dispatched to the correct loop.
29-
public class RedisConnectionPool {
29+
public final class RedisConnectionPool {
3030
/// A unique identifer to represent this connection.
3131
public let id = UUID()
3232
/// The count of connections that are active and available for use.

0 commit comments

Comments
 (0)