Skip to content

Commit

Permalink
Update timers-and-reminders.md
Browse files Browse the repository at this point in the history
  • Loading branch information
joproulx authored Dec 10, 2024
1 parent 6ceb809 commit 012af8c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/orleans/grains/timers-and-reminders.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ ms.date: 08/01/2024

# Timers and reminders

The Orleans runtime provides two mechanisms, called timers and reminders, that enable the developer to specify periodic behavior for grains.

## Timers

**Timers** are used to create periodic grain behavior that isn't required to span multiple activations (instantiations of the grain). A timer is identical to the standard .NET <xref:System.Threading.Timer?displayProperty=fullName> class. In addition, timers are subject to single-threaded execution guarantees within the grain activation that they operate on.

Each activation may have zero or more timers associated with it. The runtime executes each timer routine within the runtime context of the activation that it's associated with.
Expand Down

0 comments on commit 012af8c

Please sign in to comment.