Is it possible to create a WorkManager from within a running application?

(will even accept hacks and/or non-public API:)

I have neither access to any deployment descriptor nor can I require any extra configuration in the deployment environment (like pre-configuring a workmanager).

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

So, As one of the authors of WorkManager in WAS.

I think you'd be better off creating a stock WorkManager for generic use. Once thats created then while you can't make another WorkManager instance, you can put an Executor wrapper on it and make Executors as you wish.

Chris wrote this article on wrapping a WorkManager with an Executor a couple of years back.

http://www.ibm.com/developerworks/websphere/techjournal/0606_johnson/0606_johnson.html

But, I'd be careful of creating more and more thread pools. You're likely better off reusing an existing pool. Too many threads is a bad thing in an application.

link|improve this answer
I see that a clean WAS 6 installation comes with a default WorkManager ("wm/default"). Is this always the case, i.e. is "wm/default" guaranteed to exist in any configuration? – rustyx Jan 18 '11 at 9:35
1  
It should be as removing it would break applications relying on a previous feature. – Billy Newport May 5 '11 at 18:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.