{"id":8323,"date":"2023-02-02T16:08:04","date_gmt":"2023-02-02T07:08:04","guid":{"rendered":"https:\/\/www.auctionpro.co.kr\/?p=8323"},"modified":"2023-02-02T16:15:13","modified_gmt":"2023-02-02T07:15:13","slug":"asynchronous-%ec%8b%ac%ed%99%94","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=8323","title":{"rendered":"Asynchronous \uc2ec\ud654"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Remark :<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Microsoft Visual Studio Community 2019<br>\ubc84\uc804 16.9.3<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">The Task asynchronous programming model (TAP) provides an abstraction over asynchronous code<\/h4>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast.png\"><img loading=\"lazy\" decoding=\"async\" width=\"797\" height=\"460\" src=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast.png\" alt=\"\" class=\"wp-image-8293\" srcset=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast.png 797w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast-300x173.png 300w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast-768x443.png 768w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast-660x381.png 660w\" sizes=\"auto, (max-width: 797px) 100vw, 797px\" \/><\/a><\/figure>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:c# decode:true \" title=\"async \" >using System;\nusing System.Threading.Tasks;\nusing System.Threading;\n\nnamespace Console\n{\n    partial class Program\n    {\n        static async Task Main(string[] args)\n        {\n            Coffee cup = PourCoffee();\n            Console.WriteLine(\"coffee is ready\");\n\n            var eggsTask = FryEggsAsync(2);\n            var baconTask = FryBaconAsync(3);\n            var toastTask = MakeToastWithButterAndJamAsync(2);\n\n            var breakfastTasks = new List&lt;Task&gt; { eggsTask, baconTask, toastTask };\n            while (breakfastTasks.Count &gt; 0)\n            {\n                Task finishedTask = await Task.WhenAny(breakfastTasks);\n                if (finishedTask == eggsTask)\n                {\n                    Console.WriteLine(\"eggs are ready\");\n                }\n                else if (finishedTask == baconTask)\n                {\n                    Console.WriteLine(\"bacon is ready\");\n                }\n                else if (finishedTask == toastTask)\n                {\n                    Console.WriteLine(\"toast is ready\");\n                }\n                breakfastTasks.Remove(finishedTask);\n            }\n\n            Juice oj = PourOJ();\n            Console.WriteLine(\"oj is ready\");\n            Console.WriteLine(\"Breakfast is ready!\");\n        }\n\n        static async Task&lt;Toast&gt; MakeToastWithButterAndJamAsync(int number)\n        {\n            var toast = await ToastBreadAsync(number);\n            ApplyButter(toast);\n            ApplyJam(toast);\n\n            return toast;\n        }\n\n        private static Juice PourOJ()\n        {\n            Console.WriteLine(\"Pouring orange juice\");\n            return new Juice();\n        }\n\n        private static void ApplyJam(Toast toast) =&gt;\n            Console.WriteLine(\"Putting jam on the toast\");\n\n        private static void ApplyButter(Toast toast) =&gt;\n            Console.WriteLine(\"Putting butter on the toast\");\n\n        private static async Task&lt;Toast&gt; ToastBreadAsync(int slices)\n        {\n            for (int slice = 0; slice &lt; slices; slice++)\n            {\n                Console.WriteLine(\"Putting a slice of bread in the toaster\");\n            }\n            Console.WriteLine(\"Start toasting...\");\n            await Task.Delay(3000);\n            Console.WriteLine(\"Remove toast from toaster\");\n\n            return new Toast();\n        }\n\n        private static async Task&lt;Bacon&gt; FryBaconAsync(int slices)\n        {\n            Console.WriteLine($\"putting {slices} slices of bacon in the pan\");\n            Console.WriteLine(\"cooking first side of bacon...\");\n            await Task.Delay(3000);\n            for (int slice = 0; slice &lt; slices; slice++)\n            {\n                Console.WriteLine(\"flipping a slice of bacon\");\n            }\n            Console.WriteLine(\"cooking the second side of bacon...\");\n            await Task.Delay(3000);\n            Console.WriteLine(\"Put bacon on plate\");\n\n            return new Bacon();\n        }\n\n        private static async Task&lt;Egg&gt; FryEggsAsync(int howMany)\n        {\n            Console.WriteLine(\"Warming the egg pan...\");\n            await Task.Delay(3000);\n            Console.WriteLine($\"cracking {howMany} eggs\");\n            Console.WriteLine(\"cooking the eggs ...\");\n            await Task.Delay(3000);\n            Console.WriteLine(\"Put eggs on plate\");\n\n            return new Egg();\n        }\n\n        private static Coffee PourCoffee()\n        {\n            Console.WriteLine(\"Pouring coffee\");\n            return new Coffee();\n        }\n\n\n\n        private class Coffee\n        {\n        }\n\n        private class Egg\n        {\n        }\n\n        private class Bacon\n        {\n            public Bacon()\n            {\n            }\n        }\n\n        private class Toast\n        {\n            public Toast()\n            {\n            }\n        }\n\n        private class Juice\n        {\n            public Juice()\n            {\n            }\n        }\n    }\n}<\/pre><\/div>\n\n\n\n<pre class=\"wp-block-preformatted\">Pouring coffee\ncoffee is ready\nWarming the egg pan...\nputting 3 slices of bacon in the pan\ncooking first side of bacon...\nPutting a slice of bread in the toaster\nPutting a slice of bread in the toaster\nStart toasting...\nflipping a slice of bacon\nflipping a slice of bacon\nflipping a slice of bacon\ncooking the second side of bacon...\ncracking 2 eggs\ncooking the eggs ...\nRemove toast from toaster\nPutting butter on the toast\nPutting jam on the toast\ntoast is ready\nPut bacon on plate\nPut eggs on plate\nbacon is ready\neggs are ready\nPouring orange juice\noj is ready\nBreakfast is ready!<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2017 \ubc84\uc804<\/h2>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><\/div>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:c# decode:true \" title=\"2017\">using System;\nusing System.Threading.Tasks;\nusing System.Threading;\n\nnamespace ConsoleCashe\n{\n    partial class Program\n    {\n        static void Main(string[] args)\n        {\n            MainAsync(args).GetAwaiter().GetResult(); \/\/Consol \ube44\ub3d9\uae30 \ub3cc\ub9ac\ub294 \ubc29\ubc95\n\n            Console.ReadLine();\n        }\n\n        private static async Task MainAsync(string[] args)  \/\/\ube44\ub3d9\uae30 \n        {\n            Coffee cup = PourCoffee();\n            Console.WriteLine(\"coffee is ready\");\n\n            var eggsTask = FryEggsAsync(2);\n            var baconTask = FryBaconAsync(3);\n            var toastTask = MakeToastWithButterAndJamAsync(2);\n\n            var breakfastTasks = new List&lt;Task&gt; { eggsTask, baconTask, toastTask };\n            while (breakfastTasks.Count &gt; 0)\n            {\n                Task finishedTask = await Task.WhenAny(breakfastTasks);\n                if (finishedTask == eggsTask)\n                {\n                    Console.WriteLine(\"eggs are ready\");\n                }\n                else if (finishedTask == baconTask)\n                {\n                    Console.WriteLine(\"bacon is ready\");\n                }\n                else if (finishedTask == toastTask)\n                {\n                    Console.WriteLine(\"toast is ready\");\n                }\n                breakfastTasks.Remove(finishedTask);\n            }\n\n            Juice oj = PourOJ();\n            Console.WriteLine(\"oj is ready\");\n            Console.WriteLine(\"Breakfast is ready!\");\n        }\n\n        static async Task&lt;Toast&gt; MakeToastWithButterAndJamAsync(int number)\n        {\n            var toast = await ToastBreadAsync(number);\n            ApplyButter(toast);\n            ApplyJam(toast);\n\n            return toast;\n        }\n\n        private static Juice PourOJ()\n        {\n            Console.WriteLine(\"Pouring orange juice\");\n            return new Juice();\n        }\n\n        private static void ApplyJam(Toast toast) =&gt;\n            Console.WriteLine(\"Putting jam on the toast\");\n\n        private static void ApplyButter(Toast toast) =&gt;\n            Console.WriteLine(\"Putting butter on the toast\");\n\n        private static async Task&lt;Toast&gt; ToastBreadAsync(int slices)\n        {\n            for (int slice = 0; slice &lt; slices; slice++)\n            {\n                Console.WriteLine(\"Putting a slice of bread in the toaster\");\n            }\n            Console.WriteLine(\"Start toasting...\");\n            await Task.Delay(3000);\n            Console.WriteLine(\"Remove toast from toaster\");\n\n            return new Toast();\n        }\n\n        private static async Task&lt;Bacon&gt; FryBaconAsync(int slices)\n        {\n            Console.WriteLine($\"putting {slices} slices of bacon in the pan\");\n            Console.WriteLine(\"cooking first side of bacon...\");\n            await Task.Delay(3000);\n            for (int slice = 0; slice &lt; slices; slice++)\n            {\n                Console.WriteLine(\"flipping a slice of bacon\");\n            }\n            Console.WriteLine(\"cooking the second side of bacon...\");\n            await Task.Delay(3000);\n            Console.WriteLine(\"Put bacon on plate\");\n\n            return new Bacon();\n        }\n\n        private static async Task&lt;Egg&gt; FryEggsAsync(int howMany)\n        {\n            Console.WriteLine(\"Warming the egg pan...\");\n            await Task.Delay(3000);\n            Console.WriteLine($\"cracking {howMany} eggs\");\n            Console.WriteLine(\"cooking the eggs ...\");\n            await Task.Delay(3000);\n            Console.WriteLine(\"Put eggs on plate\");\n\n            return new Egg();\n        }\n\n        private static Coffee PourCoffee()\n        {\n            Console.WriteLine(\"Pouring coffee\");\n            return new Coffee();\n        }\n\n\n\n        private class Coffee\n        {\n        }\n\n        private class Egg\n        {\n        }\n\n        private class Bacon\n        {\n            public Bacon()\n            {\n            }\n        }\n\n        private class Toast\n        {\n            public Toast()\n            {\n            }\n        }\n\n        private class Juice\n        {\n            public Juice()\n            {\n            }\n        }\n   }\n}<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Remark : Microsoft Visual Studio Community 2019\ubc84\uc804 16.9.3 The Task asynchronous programming model (TAP) provides an abstraction over asynchronous code Pouring coffee coffee is ready <a class=\"mh-excerpt-more\" href=\"https:\/\/www.auctionpro.co.kr\/?p=8323\" title=\"Asynchronous \uc2ec\ud654\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[241],"tags":[],"class_list":["post-8323","post","type-post","status-publish","format-standard","hentry","category-asynchronous"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Asynchronous \uc2ec\ud654 - AuctionPro<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.auctionpro.co.kr\/?p=8323\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Asynchronous \uc2ec\ud654 - AuctionPro\" \/>\n<meta property=\"og:description\" content=\"Remark : Microsoft Visual Studio Community 2019\ubc84\uc804 16.9.3 The Task asynchronous programming model (TAP) provides an abstraction over asynchronous code Pouring coffee coffee is ready [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auctionpro.co.kr\/?p=8323\" \/>\n<meta property=\"og:site_name\" content=\"AuctionPro\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-02T07:08:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-02T07:15:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast.png\" \/>\n\t<meta property=\"og:image:width\" content=\"797\" \/>\n\t<meta property=\"og:image:height\" content=\"460\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"golgol\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"golgol\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323\"},\"author\":{\"name\":\"golgol\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"headline\":\"Asynchronous \uc2ec\ud654\",\"datePublished\":\"2023-02-02T07:08:04+00:00\",\"dateModified\":\"2023-02-02T07:15:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323\"},\"wordCount\":18,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/asynchronous-breakfast.png\",\"articleSection\":[\"Asynchronous(\ube44\ub3d9\uae30)\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323\",\"name\":\"Asynchronous \uc2ec\ud654 - AuctionPro\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/asynchronous-breakfast.png\",\"datePublished\":\"2023-02-02T07:08:04+00:00\",\"dateModified\":\"2023-02-02T07:15:13+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323#primaryimage\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/asynchronous-breakfast.png\",\"contentUrl\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2023\\\/02\\\/asynchronous-breakfast.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8323#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Asynchronous \uc2ec\ud654\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\",\"name\":\"AuctionPro\",\"description\":\"\uc625\uc158\ud504\ub85c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\",\"name\":\"golgol\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?author=6\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Asynchronous \uc2ec\ud654 - AuctionPro","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.auctionpro.co.kr\/?p=8323","og_locale":"ko_KR","og_type":"article","og_title":"Asynchronous \uc2ec\ud654 - AuctionPro","og_description":"Remark : Microsoft Visual Studio Community 2019\ubc84\uc804 16.9.3 The Task asynchronous programming model (TAP) provides an abstraction over asynchronous code Pouring coffee coffee is ready [...]","og_url":"https:\/\/www.auctionpro.co.kr\/?p=8323","og_site_name":"AuctionPro","article_published_time":"2023-02-02T07:08:04+00:00","article_modified_time":"2023-02-02T07:15:13+00:00","og_image":[{"width":797,"height":460,"url":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast.png","type":"image\/png"}],"author":"golgol","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"golgol","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auctionpro.co.kr\/?p=8323#article","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=8323"},"author":{"name":"golgol","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"headline":"Asynchronous \uc2ec\ud654","datePublished":"2023-02-02T07:08:04+00:00","dateModified":"2023-02-02T07:15:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=8323"},"wordCount":18,"commentCount":0,"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=8323#primaryimage"},"thumbnailUrl":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast.png","articleSection":["Asynchronous(\ube44\ub3d9\uae30)"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auctionpro.co.kr\/?p=8323#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auctionpro.co.kr\/?p=8323","url":"https:\/\/www.auctionpro.co.kr\/?p=8323","name":"Asynchronous \uc2ec\ud654 - AuctionPro","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=8323#primaryimage"},"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=8323#primaryimage"},"thumbnailUrl":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast.png","datePublished":"2023-02-02T07:08:04+00:00","dateModified":"2023-02-02T07:15:13+00:00","author":{"@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"breadcrumb":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=8323#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auctionpro.co.kr\/?p=8323"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.auctionpro.co.kr\/?p=8323#primaryimage","url":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast.png","contentUrl":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2023\/02\/asynchronous-breakfast.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.auctionpro.co.kr\/?p=8323#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/www.auctionpro.co.kr\/"},{"@type":"ListItem","position":2,"name":"Asynchronous \uc2ec\ud654"}]},{"@type":"WebSite","@id":"https:\/\/www.auctionpro.co.kr\/#website","url":"https:\/\/www.auctionpro.co.kr\/","name":"AuctionPro","description":"\uc625\uc158\ud504\ub85c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.auctionpro.co.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2","name":"golgol","url":"https:\/\/www.auctionpro.co.kr\/?author=6"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/8323","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=8323"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/8323\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=8323"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=8323"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=8323"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}