Packages

A standalone Elixir SDK for Temporal: workflow and activity definitions, a worker that polls a Temporal cluster, a client, a deterministic replayer, and a Rust NIF bridge over temporalio-sdk-core.

Current section

Files

Jump to
hourglass lib hourglass workflow_handle.ex
Raw

lib/hourglass/workflow_handle.ex

defmodule Hourglass.WorkflowHandle do
@moduledoc "Identifier for an in-flight workflow execution."
defstruct [:id, :run_id]
@type t :: %__MODULE__{id: String.t(), run_id: String.t()}
end