{"id":2571,"date":"2011-01-16T12:19:19","date_gmt":"2011-01-16T06:49:19","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=2571"},"modified":"2016-11-30T12:47:49","modified_gmt":"2016-11-30T07:17:49","slug":"how-to-use-thread-pooling-using-groovy","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/","title":{"rendered":"How to use Thread-Pooling using Groovy"},"content":{"rendered":"<p>Grails Development is challenging and most <a title=\"Grails Development\" href=\"https:\/\/2thenew.online\/grails-application-development\" target=\"_blank\">Groovy and Grails <\/a>projects require in-depth understanding of thread-pooling.<\/p>\n<p>As a <a title=\"groovy developer\" href=\"https:\/\/2thenew.online\/grails-application-development\">Groovy developer<\/a>, I really like the thread-pooling API (in java.util.concurrent package), especially when you are hitting x number of API dealing with outside network to fetch information for a single request.<\/p>\n<p>Example: A website dealing with some kind of ticket booking service and there are 4 different vendors (sources where you retrieve ticket status from).<br \/>\nClasses you need to import.<\/p>\n<p>[groovy]<br \/>\nimport java.util.concurrent.ExecutorService<br \/>\nimport java.util.concurrent.Executors<br \/>\nimport java.util.concurrent.Callable<br \/>\nimport java.util.concurrent.Executors<br \/>\nimport java.util.concurrent.TimeUnit<br \/>\nimport java.util.concurrent.Future<br \/>\n[\/groovy]<\/p>\n<p>I am discussing it here in a very simple Groovish manner.<\/p>\n<p>[groovy]<br \/>\ndef myClosure = {num -&gt; println &quot;I Love Groovy ${num}&quot;}<br \/>\ndef threadPool = Executors.newFixedThreadPool(4)<br \/>\n try {<br \/>\n  List&lt;Future&gt; futures = (1..10).collect{num-&gt;<br \/>\n    threadPool.submit({-&gt;<br \/>\n    myClosure num } as Callable);<br \/>\n  }<br \/>\n  \/\/ recommended to use following statement to ensure the execution of all tasks.<br \/>\n  futures.each{it.get()}<br \/>\n}finally {<br \/>\n  threadPool.shutdown()<br \/>\n}<br \/>\n[\/groovy]<\/p>\n<p>In the above example, thread pool size is 4, that means concurrent 4 tasks would be executed in a single go. And task is the code in &#8216;myClosure&#8217;.<\/p>\n<p>Let&#8217;s say you rely on output from tasks. In such a case, \u00a0you need to do the following:<\/p>\n<p>[groovy]<br \/>\n Collection results = futures.collect{it.get()}<br \/>\n[\/groovy]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Grails Development is challenging and most Groovy and Grails projects require in-depth understanding of thread-pooling. As a Groovy developer, I really like the thread-pooling API (in java.util.concurrent package), especially when you are hitting x number of API dealing with outside network to fetch information for a single request. Example: A website dealing with some kind [&hellip;]<\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":110,"footnotes":""},"categories":[7],"tags":[4840,4005,9,3954],"class_list":["post-2571","post","type-post","status-publish","format-standard","hentry","category-grails","tag-grails","tag-grails-development","tag-groovy","tag-groovy-developer"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In this blog, we will share how to use thread pooling using Groovy. This will benefit you in multiple Grails Development projects,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Salil\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"How to use Thread-Pooling using Groovy | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In this blog, we will share how to use thread pooling using Groovy. This will benefit you in multiple Grails Development projects,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to use Thread-Pooling using Groovy | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In this blog, we will share how to use thread pooling using Groovy. This will benefit you in multiple Grails Development projects,\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/#article\",\"name\":\"How to use Thread-Pooling using Groovy | TO THE NEW Blog\",\"headline\":\"How to use Thread-Pooling using Groovy\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2011-01-16T12:19:19+05:30\",\"dateModified\":\"2016-11-30T12:47:49+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/#webpage\"},\"articleSection\":\"Grails, Grails, grails development, Groovy, groovy developer\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"position\":2,\"name\":\"Grails\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/#listItem\",\"name\":\"How to use Thread-Pooling using Groovy\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/#listItem\",\"position\":3,\"name\":\"How to use Thread-Pooling using Groovy\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/grails\\\/#listItem\",\"name\":\"Grails\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/\",\"name\":\"Salil\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/97e216cba95b296d5909ad7b93d1c338d0fdad7b95410c9412b126a90f4735d9?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Salil\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/\",\"name\":\"How to use Thread-Pooling using Groovy | TO THE NEW Blog\",\"description\":\"In this blog, we will share how to use thread pooling using Groovy. This will benefit you in multiple Grails Development projects,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-use-thread-pooling-using-groovy\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/salil\\\/#author\"},\"datePublished\":\"2011-01-16T12:19:19+05:30\",\"dateModified\":\"2016-11-30T12:47:49+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to use Thread-Pooling using Groovy | TO THE NEW Blog","description":"In this blog, we will share how to use thread pooling using Groovy. This will benefit you in multiple Grails Development projects,","canonical_url":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/#article","name":"How to use Thread-Pooling using Groovy | TO THE NEW Blog","headline":"How to use Thread-Pooling using Groovy","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/salil\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"datePublished":"2011-01-16T12:19:19+05:30","dateModified":"2016-11-30T12:47:49+05:30","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/#webpage"},"articleSection":"Grails, Grails, grails development, Groovy, groovy developer"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/grails\/#listItem","name":"Grails"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/grails\/#listItem","position":2,"name":"Grails","item":"https:\/\/2thenew.online\/blog\/category\/grails\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/#listItem","name":"How to use Thread-Pooling using Groovy"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/#listItem","position":3,"name":"How to use Thread-Pooling using Groovy","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/grails\/#listItem","name":"Grails"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/salil\/#author","url":"https:\/\/2thenew.online\/blog\/author\/salil\/","name":"Salil","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/97e216cba95b296d5909ad7b93d1c338d0fdad7b95410c9412b126a90f4735d9?s=96&d=mm&r=g","width":96,"height":96,"caption":"Salil"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/#webpage","url":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/","name":"How to use Thread-Pooling using Groovy | TO THE NEW Blog","description":"In this blog, we will share how to use thread pooling using Groovy. This will benefit you in multiple Grails Development projects,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/salil\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/salil\/#author"},"datePublished":"2011-01-16T12:19:19+05:30","dateModified":"2016-11-30T12:47:49+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"How to use Thread-Pooling using Groovy | TO THE NEW Blog","og:description":"In this blog, we will share how to use thread pooling using Groovy. This will benefit you in multiple Grails Development projects,","og:url":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"How to use Thread-Pooling using Groovy | TO THE NEW Blog","twitter:description":"In this blog, we will share how to use thread pooling using Groovy. This will benefit you in multiple Grails Development projects,","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"2571","title":null,"description":"In this blog, we will share how to use thread pooling using Groovy. This will benefit you in multiple Grails Development projects,","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 13:17:12","updated":"2024-02-29 08:44:21","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\/category\/grails\/\" title=\"Grails\">Grails<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to use Thread-Pooling using Groovy\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Grails","link":"https:\/\/2thenew.online\/blog\/category\/grails\/"},{"label":"How to use Thread-Pooling using Groovy","link":"https:\/\/2thenew.online\/blog\/how-to-use-thread-pooling-using-groovy\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/2571","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=2571"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/2571\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=2571"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=2571"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=2571"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}