File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
core/src/main/scala/akka/persistence/r2dbc Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import scala.concurrent.Future
22
22
import scala .concurrent .duration .Duration
23
23
24
24
import akka .annotation .InternalApi
25
+ import akka .annotation .InternalStableApi
25
26
26
27
object ConnectionFactoryProvider extends ExtensionId [ConnectionFactoryProvider ] {
27
28
def createExtension (system : ActorSystem [_]): ConnectionFactoryProvider = new ConnectionFactoryProvider (system)
@@ -71,6 +72,13 @@ class ConnectionFactoryProvider(system: ActorSystem[_]) extends Extension {
71
72
}
72
73
}
73
74
75
+ /**
76
+ * INTERNAL API
77
+ */
78
+ @ InternalStableApi
79
+ def connectionPoolSettingsFor (configLocation : String ): ConnectionPoolSettings =
80
+ connectionFactorySettingsFor(configLocation).poolSettings
81
+
74
82
private def createConnectionPoolFactory (
75
83
settings : ConnectionPoolSettings ,
76
84
connectionFactory : ConnectionFactory ): ConnectionPool = {
You can’t perform that action at this time.
0 commit comments