본문 바로가기
스터디/Flutter

[Flutter] Future, async, await 삼총사

by SayHiWorld 2024. 1. 19.

코드 출처 : nomadcoders

 

http 패키지의 get을 활용해 Api url로 부터 response를 받아오는 코드를 짜봤다. (13번 줄 주목)

 

이때 await를 썼는데, 실제로 url로부터 response를 받아오기 전까지, 다음 코드로 넘어가지 말라는 뜻이다.

하나의 일이 처리될 때 까지 다른 일의 처리가 지연되는 것을 '비동기적'이라고 한다.

 

await 로 인해, getTodaysToons() 함수 자체가 비동기적 함수가 되었다. 

따라서, async 을 붙여줘야 한다. (10번 줄 주목)

 

또한, 비동기적 함수의 반환값은 Future 이어야한다. 

 

Future에 대한 Geeksforgeeks의 설명은 다음과 같다.

 

Future in Flutter refers to an object that represents a value that is not yet available but will be at some point in the future.

A Future can be used to represent an asynchronous operation that is being performed, such as fetching data from a web API, reading from a file, or performing a computation.

 

지금 당장은 값이 없지만, 미래의 어느 시점에는 값이 있는 객체에 쓰면 된다.

사용 예시로는 Api fetching 하는 경우이다. 

 


 

함수의 반환값은 다 Future이 되어야하는거 아닌가? 하는 의문이 들긴 하는데,

 

비동기적 코드를 짤 땐, await, async, Future 이 세가지를 같이 사용하는 것이

다트 공식 문서에 권장되어 있으니

비동기적 코드에 사용되는 형태로 알고 Future은 넘어가겠다..

 

Asynchronous programming: futures, async, awai 

https://dart.dev/codelabs/async-await

 

Asynchronous programming: futures, async, await

Learn about and practice writing asynchronous code in DartPad!

dart.dev

 

https://nomadcoders.co/flutter-for-beginners/lectures/4162

 

All Courses – 노마드 코더 Nomad Coders

초급부터 고급까지! 니꼬쌤과 함께 풀스택으로 성장하세요!

nomadcoders.co

 

'스터디 > Flutter' 카테고리의 다른 글

#4.4 Widget Lifecycle  (0) 2024.01.19
[Flutter] #3.6 & 3.7 Cards &icons  (0) 2024.01.18
[Flutter] #3.5 Reusable Widgets  (1) 2024.01.14