๐Ÿ“šThread & Coroutine

Commonality

  • Asynchronous

Thread

  • Context Switching Thread ์ „

    • ์ž์›๊ณต์œ  blocking

  • Thread ๋งŒ์˜ Stack ์ด ์žˆ์Œ

Coroutine

  • one Thread

  • ์ž‘์—…์„ ๋ฒˆ๊ฐˆ์•„๊ฐ€๋ฉด์„œ ์ง„ํ–‰ ์‹œ๋ถ„ํ• 

  • object ํ• ๋‹น๋ฐฉ์‹ yield return new...

  • No Context Switch

    • non blocking

  • Coroutine queue์— ์Šค์ผ€์ค„ ๋“ค์ด ์Œ“์ž„

Last updated