Akka.Interfaced.InterfacedActorObserverMap.GetContext C# (CSharp) Method

GetContext() public method

public GetContext ( int observerId ) : object
observerId int
return object
        public object GetContext(int observerId)
        {
            object context;
            return _observerContextMap.TryGetValue(observerId, out context) ? context : null;
        }