Akka.Persistence.PersistentView.OnReplayError C# (CSharp) Метод

OnReplayError() защищенный Метод

Called whenever a message replay fails. By default it logs the error. Subclass may override to customize logging. The PersistentView will not stop or throw exception due to this. It will try again on next update.
protected OnReplayError ( Exception cause ) : void
cause System.Exception
Результат void
        protected virtual void OnReplayError(Exception cause)
        {
            if (_log.IsErrorEnabled)
                _log.Error(cause, "Persistence view failure when replaying events for persistenceId [{0}]. " +
                                  "Last known sequence number [{}]", PersistenceId, LastSequenceNr);
        }