# IRemindable.ReceiveReminder(string, TickStatus, CancellationToken)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.iremindable/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.iremindable/methods/)

[Source](https://github.com/dotnet/orleans/blob/1644940b035c7bdf215a4fd7135757c06bcfe9ec/src/Orleans.Reminders/Timers/IRemindable.cs#L31)

```csharp
[Orleans.Alias(6461BF2F)]
public virtual Task ReceiveReminder(string reminderName, TickStatus status, CancellationToken cancellationToken)
```

Receive a new Reminder.

### Parameters

- `reminderName` (`string`): Name of this Reminder
- `status` (`TickStatus`): Status of this Reminder tick
- `cancellationToken` (`CancellationToken`): The cancellation token.

### Returns

Completion promise which the grain will resolve when it has finished processing this Reminder tick.
