flâneur — a map of the web's best reading

What is a Temporal Workflow? | Temporal Documentation

docs.temporal.io · 686 words · saved by 1 readers

A Temporal Workflow defines the overall flow of the application. Conceptually, a Workflow is a sequence of steps written in a general-purpose programming language. With Temporal, those steps are defined by writing code, known as a Workflow Definition, and are carried out by running that code, which results in a Workflow Execution. In day-to-day conversations, the term Workflow might refer to Workflow Type, a Workflow Definition, or a Workflow Execution. Temporal documentation aims to be explicit and differentiate between them. A Workflow Definition is the code that defines the Workflow. It is written with a programming language and corresponding Temporal SDK. Depending on the programming language, it's typically implemented as a function or an object method and encompasses the end-to-end series of steps of a Temporal application. Below are different ways to develop a basic Workflow Definition. Workflow Definition in Go Workflow Definition in Java (Interface) Workflow Definition in Java

On this page This guide provides a comprehensive overview of Temporal Workflows and covers the following: Workflow Definition Workflow Execution Schedules Dynamic Handler Cron Job Intro to Workflows ​ Conceptually, a workflow defines a sequence of steps. With Temporal, those steps are defined by writing code, known as a Workflow Definition, and are carried out by running that code, which results in a Workflow Execution. In day-to-day conversations, the term Workflow might refer to Workflow Type, a Workflow Definition, or a Workflow Execution. A Workflow Definition is the code that defines your

Explore this link on the map →

related reading