Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Look at how Temporal represents workflows as code. It doesn't use any intermediate representation like DAG or state machine. It executes your code directly as a synchronous program with blocking operations taking as long as necessary to execute. For example the following code would be absolutely valid as a Temporal workflow:

    waitForApproval(purchase); 
    sleep(Duration.ofDays(30));
    sendEmail(email);


Yep. This is why I'm so interested in it!




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: