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);
        }