• 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

java milestone management

 
Ranch Hand
Posts: 130
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
I have to think about an architecture where I have to come up with a milestone management code.
I mean my application here has various subsystems, and will be called at a fire of a gateway event like GW_X,GW_Y,GW_Z

Something like
if (GW_X is fired){
// call system X
}

if (GW_Y is fired){
// call system Y
}

if (GW_Z is fired){
// call system Z
}


and a subsystem can call an other subsystems too, depending on the business logic, so when a gateway event fails at some step, we have to start the process from the beginning, I mean it takes lot of effort in debugging and fixing for the production support people, is there something like a MILESTONE RECORDER we can do and save into the database , and start from the last MILESTONE it recorded, So that we dont have to start from scratch.If somebody has an idea/advice/suggestion , I could start thinking about it.when I save a milestone into the database, i need to save an object in XML form, and when I need to read from the database, i need to convert that xml to object and use it .


Thanks
Pradeep
 
Bartender
Posts: 1638
IntelliJ IDE MySQL Database Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sounds like a persistent (long lived) workflow.

Moving to OO, UML Pattern forum (basically we discuss design there). This does not fit much in distributed java.
 
reply
    Bookmark Topic Watch Topic
  • New Topic