# TickCompleted Constructors

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.reminders.diagnostics.reminderevents.tickcompleted/)

## TickCompleted(GrainId, string, TickStatus, SiloAddress?) {#constructor-orleans-runtime-grainid-string-orleans-runtime-tickstatus-orleans-ru-5ac36cb3}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.reminders.diagnostics.reminderevents.tickcompleted/constructors/constructor-orleans-runtime-grainid-string-orleans-runtime-tickstatus-orleans-ru-5ac36cb3/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Reminders/Diagnostics/ReminderEvents.cs#L248-L253)

```csharp
public TickCompleted(GrainId grainId, string reminderName, TickStatus status, SiloAddress? siloAddress)
```

Event payload for when a reminder tick has completed successfully.

### Parameters

- `grainId` (`GrainId`): The grain associated with the reminder.
- `reminderName` (`string`): The reminder name.
- `status` (`TickStatus`): The tick status passed to the grain.
- `siloAddress` (`SiloAddress?`): The address of the silo handling this reminder.
