You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// See also [a draft proposal for custom executors](https://github.com/rjmccall/swift-evolution/blob/custom-executors/proposals/0000-custom-executors.md#the-default-global-concurrent-executor)
264
-
staticfunc installGlobalExecutor(){
265
-
guard !didInstallGlobalExecutor else{return}
271
+
staticfunc installGlobalExecutor()->Bool{
272
+
if didInstallGlobalExecutor {
273
+
returnfalse
274
+
}
266
275
didInstallGlobalExecutor =true
267
276
268
-
269
277
letlooperCallback:LooperCallback={ ft, event, data in
0 commit comments