# TickStatus

Package: [Microsoft.Orleans.Reminders](/orleans/docs/api/csharp/microsoft.orleans.reminders/) 10.0.0

[NuGet package](https://www.nuget.org/packages/Microsoft.Orleans.Reminders) | [Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Reminders/Timers/IRemindable.cs#L43)

```csharp
[Orleans.GenerateSerializer]
[Orleans.Immutable]
public readonly struct TickStatus
```

The status of a tick when the tick is delivered to the registrar grain. In case of failures, it may happen that a tick is not delivered on time. The app can notice such missed ticks as follows. Upon receiving a tick, the app can calculate the theoretical number of ticks since start of the reminder as: curCount = (Now - FirstTickTime) / Period The app can keep track of it as 'count'. Upon receiving a tick, the number of missed ticks = curCount - count - 1 Thereafter, the app can set count = curCount

## Constructors

- [TickStatus(DateTime, TimeSpan, DateTime)](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.runtime.tickstatus/constructors/constructor-system-datetime-system-timespan-system-datetime-4e355901/)

## Properties

- [CurrentTickTime](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.runtime.tickstatus/properties/currentticktime-b5b92023/)
- [FirstTickTime](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.runtime.tickstatus/properties/firstticktime-4d8373ec/)
- [Period](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.runtime.tickstatus/properties/period-8ea4e813/)

## Methods

- [ToString](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.runtime.tickstatus/methods/tostring-54df7c01/)
