RE: Re[2]: [JBoss-dev] AOP versioned ACID objects 1st iteration

2003-03-27 Thread marc fleury
l Burke > Subject: Re[2]: [JBoss-dev] AOP versioned ACID objects 1st iteration > > > when I thought about this, I was trying avoir the current construct : > > B oldB = a.getB(); > C oldC = a.getC(); > try > { >a.setB(b); >a.setC(c); > } > catch(Throw

Re[2]: [JBoss-dev] AOP versioned ACID objects 1st iteration

2003-03-27 Thread julien viet
when I thought about this, I was trying avoir the current construct : B oldB = a.getB(); C oldC = a.getC(); try { a.setB(b); a.setC(c); } catch(Throwable t) { a.setB(oldB); a.setC(oldc); } and I was trying to find a way to make atomic Deployment within deployers. Deploy all or nothing