Questions: #Q1 What is Flutter?


Isolate.spawn(sayhii,'Whats up!!')



Yüklə 136,06 Kb.
Pdf görüntüsü
səhifə17/17
tarix07.01.2024
ölçüsü136,06 Kb.
#207354
1   ...   9   10   11   12   13   14   15   16   17
Flutter-Interview-Junior-Middle-Senior-Expert

Isolate.spawn(sayhii,'Whats up!!');
Isolate.spawn(sayhii,'Welcome!!');
print('execution from main1');
print('execution from main2');
print('execution from main3');
}
------------------------- EVENT LOOP ----------------------- Imagine the life of an app stretched out on a timeline. The
app starts, the app stops, and in between a bunch of events occur — I/O from the disk, finger taps from the
user… all kinds of stuff.
Your app can’t predict when these events will happen or in what order, and it has to handle all of them with a
single thread that never blocks. So, the app runs an event loop. It grabs the oldest event from its event queue,
processes it, goes back for the next one, processes it, and so on, until the event queue is empty.
The whole time the app is running — you’re tapping on the screen, things are downloading, a timer goes off —
that event loop is just going around and around, processing those events one at a time. The event loop
processes one event at a time.
When there’s a break in the action, the thread just hangs out, waiting for the next event. It can trigger the
garbage collector.
All of the high-level APIs and language features that Dart has for asynchronous programming — futures,
streams, async and await — they’re all built on and around this simple loop.
For example, say you have a button that initiates a network request, like this one:
When you run your app, Flutter builds the button and puts it on screen. Then your app waits.
Your app’s event loop just sort of idles, waiting for the next event. Events that aren’t related to the button might
come in and get handled, while the button sits there waiting for the user to tap on it. Eventually they do, and a
tap event enters the queue.
That event gets picked up for processing. Flutter looks at it, and the rendering system says, “Those coordinates
match the raised button,” so Flutter executes the onPressed function. That code initiates a network request
(which returns a future) and registers a completion handler for the future by using the then() method.
That’s it. The loop is finished processing that tap event, and it’s discarded.
In [ ]:

Yüklə 136,06 Kb.

Dostları ilə paylaş:
1   ...   9   10   11   12   13   14   15   16   17




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2024
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin