How to divide ExecutorService tasks into groups or how to invoke shutDownNow only for tasks which have been submitted from the specific main thread?Why is Spring's ApplicationContext.getBean considered bad?How can I shutdown Spring task executor/scheduler pools before all other beans in the web app are destroyed?How to use a single Task Pool across all request for an application using Spring TaskExecutorHow to invoke a method on the UI thread from within a worker thread?org.springframework.remoting.RemoteAccessException: Could not access HTTP invoker remote service occurs when starting tasks from anbother threadRunning code after Spring Boot startsSpring boot. How to Create TaskExecutor with Annotation?Spring ThreadPoolTaskExecutor waitForTasksToCompleteOnShutdown behaviour not clearRun limited number of threads on Spring Boot serviceNot able to process request after multiple thread creation

How to reply this mail from potential PhD professor?

Is Cola "probably the best-known" Latin word in the world? If not, which might it be?

Which industry am I working in? Software development or financial services?

Answer "Justification for travel support" in conference registration form

Is there a legal ground for stripping the UK of its UN Veto if Scotland and/or N.Ireland split from the UK?

Is induction neccessary for proving that every injective mapping of a finite set into itself is a mapping onto itself?

How can I support myself financially as a 17 year old with a loan?

How to give very negative feedback gracefully?

Are we obligated to aspire to be Talmidei Chachamim?

What word means "to make something obsolete"?

Has any spacecraft ever had the ability to directly communicate with civilian air traffic control?

Can Ghost kill White Walkers or Wights?

Casual versus formal jacket

Missed the connecting flight, separate tickets on same airline - who is responsible?

How can I close a gap between my fence and my neighbor's that's on his side of the property line?

¿Por qué el español no introdujo el C con cedilla, Ç? – Why did Spanish not introduce the C with cedilla, Ç?

A non-technological, repeating, phenomenon in the sky, holding its position in the sky for hours

What was the state of the German rail system in 1944?

Would a 1/1 token with persist dying trigger on death effects a second time?

What happens to the Time Stone

Am I getting DDOS from crawlers?

Confused about proofs by contradiction, the Law of the Excluded Middle and existence of consistent axiomatic systems.

How can I get a job without pushing my family's income into a higher tax bracket?

Why is B♯ higher than C♭ in 31-ET?



How to divide ExecutorService tasks into groups or how to invoke shutDownNow only for tasks which have been submitted from the specific main thread?


Why is Spring's ApplicationContext.getBean considered bad?How can I shutdown Spring task executor/scheduler pools before all other beans in the web app are destroyed?How to use a single Task Pool across all request for an application using Spring TaskExecutorHow to invoke a method on the UI thread from within a worker thread?org.springframework.remoting.RemoteAccessException: Could not access HTTP invoker remote service occurs when starting tasks from anbother threadRunning code after Spring Boot startsSpring boot. How to Create TaskExecutor with Annotation?Spring ThreadPoolTaskExecutor waitForTasksToCompleteOnShutdown behaviour not clearRun limited number of threads on Spring Boot serviceNot able to process request after multiple thread creation






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















In Spring Boot Application configuration I declare @ Bean :



ExecutorService service = Executors.newCachedThreadPool();


This service is general for the application.



To execute tasks parallel I use:



service.submit(() -> 
if (!Thread.interrupted())
try
...
catch (Exception e)
service.shutdownNow();


);


In case when I have an exception I stop all the tasks. But I need to stop only tasks which have been invoked from the current thread (current user request).



Is It possible to realize It with ExecutorService?










share|improve this question






















  • why don't you use CompletableFuture for that?

    – Deadpool
    Mar 22 at 21:32











  • I have never heard about It before. I have an opportunity to use anything to solve the problem

    – Donatello
    Mar 22 at 21:42

















0















In Spring Boot Application configuration I declare @ Bean :



ExecutorService service = Executors.newCachedThreadPool();


This service is general for the application.



To execute tasks parallel I use:



service.submit(() -> 
if (!Thread.interrupted())
try
...
catch (Exception e)
service.shutdownNow();


);


In case when I have an exception I stop all the tasks. But I need to stop only tasks which have been invoked from the current thread (current user request).



Is It possible to realize It with ExecutorService?










share|improve this question






















  • why don't you use CompletableFuture for that?

    – Deadpool
    Mar 22 at 21:32











  • I have never heard about It before. I have an opportunity to use anything to solve the problem

    – Donatello
    Mar 22 at 21:42













0












0








0


1






In Spring Boot Application configuration I declare @ Bean :



ExecutorService service = Executors.newCachedThreadPool();


This service is general for the application.



To execute tasks parallel I use:



service.submit(() -> 
if (!Thread.interrupted())
try
...
catch (Exception e)
service.shutdownNow();


);


In case when I have an exception I stop all the tasks. But I need to stop only tasks which have been invoked from the current thread (current user request).



Is It possible to realize It with ExecutorService?










share|improve this question














In Spring Boot Application configuration I declare @ Bean :



ExecutorService service = Executors.newCachedThreadPool();


This service is general for the application.



To execute tasks parallel I use:



service.submit(() -> 
if (!Thread.interrupted())
try
...
catch (Exception e)
service.shutdownNow();


);


In case when I have an exception I stop all the tasks. But I need to stop only tasks which have been invoked from the current thread (current user request).



Is It possible to realize It with ExecutorService?







java spring multithreading concurrency






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 22 at 21:17









DonatelloDonatello

12919




12919












  • why don't you use CompletableFuture for that?

    – Deadpool
    Mar 22 at 21:32











  • I have never heard about It before. I have an opportunity to use anything to solve the problem

    – Donatello
    Mar 22 at 21:42

















  • why don't you use CompletableFuture for that?

    – Deadpool
    Mar 22 at 21:32











  • I have never heard about It before. I have an opportunity to use anything to solve the problem

    – Donatello
    Mar 22 at 21:42
















why don't you use CompletableFuture for that?

– Deadpool
Mar 22 at 21:32





why don't you use CompletableFuture for that?

– Deadpool
Mar 22 at 21:32













I have never heard about It before. I have an opportunity to use anything to solve the problem

– Donatello
Mar 22 at 21:42





I have never heard about It before. I have an opportunity to use anything to solve the problem

– Donatello
Mar 22 at 21:42












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55307903%2fhow-to-divide-executorservice-tasks-into-groups-or-how-to-invoke-shutdownnow-onl%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55307903%2fhow-to-divide-executorservice-tasks-into-groups-or-how-to-invoke-shutdownnow-onl%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현