ILogViewAdaptor<TLogView, TLogEntry>
interface
Namespace: Orleans.EventSourcing
A log view adaptor is the storage interface for
Orleans.EventSourcing.LogConsistentGrain, whose state is defined as a log view. There is one adaptor per grain, which is installed by ILogViewAdaptorFactory when the grain is activated.
public interface ILogViewAdaptor<TLogView, TLogEntry> : ILogConsistencyDiagnostics, ILogViewRead<TLogView, TLogEntry>, ILogViewUpdate<TLogEntry> where TLogView : new()Methods
PostOnActivateCalled during activation, right after the user-definedGrain..PostOnDeactivateCalled during deactivation, right after the user-definedGrain.PreOnActivateCalled during activation, right before the user-definedGrain.
