On Thu, Sep 25, 2008 at 7:28 PM, Druid <[EMAIL PROTECTED]> wrote: > Hi, > I'm learning ode now,and I have a question. > If a process is executing when the server down, what will happen is the > server restart?rollback or go on? >
The process will resume its execution from the last persistence point, which would typically be the time when it last sent/received a message. On the unstable branch (trunk), we support transaction demarcation using atomic scope so you can explicitly define when and where the commit points happen. alex
