• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

work manager in websphere7 and how to use it in java.

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is work manager in websphere and how to use it in java? Any sample programs or easy tutorial will be very helpul.
 
Bartender
Posts: 1357
39
IBM DB2 Netbeans IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Basically - and as far as I know - WorkManagers are a mean Ibm introduced to allow a certain degree of parallelism within Java EE components (such as
servlets, EJBs), since it' strongly descouraged usage of spawned threads within a Java EE context.

With recent WAS 8.5.x and support for EJB 3.1 with parallelism required by the specification via @Asynchronous annotation, I think you'll need no longer
to use WorkManagers, even if I suppose they're still used under the hood to implement actually parallelism and asynchronism.

For example, I suggest you to search for example on IBM website.
 
reply
    Bookmark Topic Watch Topic
  • New Topic