Akka.Persistence.ViewState.ViewState C# (CSharp) 메소드

ViewState() 공개 메소드

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