We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96ab257 commit 14a7342Copy full SHA for 14a7342
internal/PowerSyncKotlin/src/appleMain/kotlin/com/powersync/pool/SwiftSQLiteConnectionPool.kt
@@ -106,12 +106,13 @@ public fun openPowerSyncWithPool(
106
schema = schema,
107
identifier = identifier,
108
logger = logger,
109
- dispatchStrategy = DispatchStrategy.Custom(
110
- object : DispatchFunction {
111
- override suspend fun <R> invoke(block: suspend () -> R): R {
112
- // We leave the dispatching up to the pool
113
- return block()
114
- }
115
- },
116
- ),
+ dispatchStrategy =
+ DispatchStrategy.Custom(
+ object : DispatchFunction {
+ override suspend fun <R> invoke(block: suspend () -> R): R {
+ // We leave the dispatching up to the pool
+ return block()
+ }
+ },
117
+ ),
118
)
0 commit comments