Chris Kessel
Chris Kessel

Reputation: 5875

Replacing Websphere's WorkManager in JBoss?

We're moving from Websphere to JBoss, but some of the code has dependencies on Websphere's WorkManager (com.ibm.websphere.asyncbeans.WorkManager). Has anyone dealt with this before and have recommendations on how to replace Websphere's WorkManager and what you'd replace it with?

Upvotes: 3

Views: 4848

Answers (2)

You could probably checkout the Spring Framework's WorkManager.

Check this link out for more details : Class WorkManagerTaskExecutor

Upvotes: -1

shelley
shelley

Reputation: 7324

Unfortunately, there is currently no Java EE standard for a WorkManager equivalent; however, JSR-236 (Concurrency Utilities for Java EE) may be back as a candidate for inclusion in Java EE 7.

Until then, depending on how you are currently using the IBM async beans WorkManager and your specific use cases, you may have a few different options to consider -

Upvotes: 3

Related Questions