Is it an atomic operation?
I mean is it possible that anything else gets executed on the main thread during an orientation change?
For example, let's say the flow on the main thread is something like this:
someOperation -> orientationChangeStart -> someOtherOperation -> orientationChangeEnd
Is this possible?
Can someOtherOperation
get executed on the UI thread while an orientation change is in progress?
Thanks in advance.