new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Temporal · all subjects

workers and task queues

2 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

Worker setup for Standalone Activities in .NET

Running a Worker for Standalone Activities is the same as running a Worker for Workflow Activities. You create a Worker, register the Activity using AddActivity(), and run the Worker. The Worker does not need to know whether the Activity will be invoked from a Workflow or as a Standalone Activity. Example: using var worker = new TemporalWorker(client, new TemporalWorkerOptions(taskQueue).AddActivity(MyActivities.ComposeGreetingAsync)); await worker.ExecuteAsync(tokenSource.Token);

ClientEnvConfig for .NET Temporal Client configuration

ClientEnvConfig.LoadClientConnectOptions() is used to configure the Temporal Client connection. It responds to environment variables and TOML configuration files, allowing the same code to work against a local dev server and Temporal Cloud without changes.

Give your agent this brain