Commonj Jboss Service based on myFoo implementation. This mbean is useful when you want run WorkManager and Timer under jboss. (ex. porting apps from ibm or bea to jboss). Use Foo-CommonJ as JSR 237 Implementation
Categories
Application ServersLicense
GNU Library or Lesser General Public License version 2.0 (LGPLv2)Follow Jboss Commonj Service
Other Useful Business Software
Enterprise-grade ITSM, for every business
Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
Rate This Project
Login To Rate This Project
User Reviews
-
Found a bug int the underlying Foo commonj implemenation. FooTimer.isExpired is returning true all the time. public boolean isExpired() { return scheduledExcecutionTime >= System.currentTimeMillis(); } Should be changed to: public boolean isExpired() { return scheduledExcecutionTime <= System.currentTimeMillis(); }