Concept Flow - Nonisolated methods
Define actor with isolated and nonisolated methods
Call nonisolated method
Execute method without actor isolation
Return result immediately
Call isolated method
Execute method with actor isolation
Await if needed, then return result
Nonisolated methods run without actor isolation, allowing immediate synchronous calls, unlike isolated methods that require awaiting.