Akka.Persistence.ViewState.ViewState C# (CSharp) Method

ViewState() public method

public ViewState ( string name, bool isRecoveryRunning, StateReceive stateReceive ) : System
name string
isRecoveryRunning bool
stateReceive StateReceive
return System
        public ViewState(string name, bool isRecoveryRunning, StateReceive stateReceive)
        {
            Name = name;
            StateReceive = stateReceive;
            IsRecoveryRunning = isRecoveryRunning;
        }