# JournaledGrain&lt;TGrainState, TEventBase&gt;.RefreshNow

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.eventsourcing/orleans.eventsourcing.journaledgrain-2/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.eventsourcing/orleans.eventsourcing.journaledgrain-2/methods/)

[Source](https://github.com/dotnet/orleans/blob/b7a9e3e1c9c54b3cec3a467c5734bf7744541bcf/src/Orleans.EventSourcing/JournaledGrain.cs#L154)

```csharp
protected Task JournaledGrain<TGrainState, RefreshNow()
```

Retrieves the latest state now, and confirms all previously raised events. Effectively, this enforces synchronization with the global state. 

Await this before reading the state to ensure strong consistency (linearizability) even if there are multiple instances of this grain

### Returns

a task that completes once the log has been refreshed and the events have been confirmed.
