@@ -57,7 +57,7 @@ public final class ApolloStore {
5757 self . cacheLock. withWriteLock {
5858 self . cache. clearPromise ( )
5959 } . andThen {
60- DispatchQueue . apollo_returnResultAsyncIfNeeded ( on: callbackQueue,
60+ DispatchQueue . apollo . returnResultAsyncIfNeeded ( on: callbackQueue,
6161 action: completion,
6262 result: . success( ( ) ) )
6363 }
@@ -115,12 +115,12 @@ public final class ApolloStore {
115115 Promise ( fulfilled: try body ( $0) )
116116 }
117117 . andThen { object in
118- DispatchQueue . apollo_returnResultAsyncIfNeeded ( on: callbackQueue,
118+ DispatchQueue . apollo . returnResultAsyncIfNeeded ( on: callbackQueue,
119119 action: completion,
120120 result: . success( object) )
121121 }
122122 . catch { error in
123- DispatchQueue . apollo_returnResultAsyncIfNeeded ( on: callbackQueue,
123+ DispatchQueue . apollo . returnResultAsyncIfNeeded ( on: callbackQueue,
124124 action: completion,
125125 result: . failure( error) )
126126 }
@@ -153,12 +153,12 @@ public final class ApolloStore {
153153 Promise ( fulfilled: try body ( $0) )
154154 }
155155 . andThen { object in
156- DispatchQueue . apollo_returnResultAsyncIfNeeded ( on: callbackQueue,
156+ DispatchQueue . apollo . returnResultAsyncIfNeeded ( on: callbackQueue,
157157 action: completion,
158158 result: . success( object) )
159159 }
160160 . catch { error in
161- DispatchQueue . apollo_returnResultAsyncIfNeeded ( on: callbackQueue,
161+ DispatchQueue . apollo . returnResultAsyncIfNeeded ( on: callbackQueue,
162162 action: completion,
163163 result: . failure( error) )
164164 }
0 commit comments