/// <summary> /// Dispatch an action to be executed via the <see cref="GlobalDispatchQueue"/>. /// </summary> /// <param name="handler">Action to enqueue for execution.</param> public static void Fork(Action handler) { GlobalDispatchQueue.QueueWorkItemWithClonedEnv(handler, null); }