Adaptive.ReactiveTrader.Messaging.Abstraction.AnonymousUserSessionHandler.AnonymousUserSessionHandler C# (CSharp) Method

AnonymousUserSessionHandler() public method

public AnonymousUserSessionHandler ( Action onEstablished, Action onDestroyed ) : System
onEstablished Action
onDestroyed Action
return System
        public AnonymousUserSessionHandler(Action<IUserSession> onEstablished, Action<IUserSession> onDestroyed)
        {
            _onEstablished = onEstablished;
            _onDestroyed = onDestroyed;
        }