Akka.Interfaced.SlimServer.ActorBoundChannelBase.GetBoundActor C# (CSharp) Method

GetBoundActor() protected method

protected GetBoundActor ( int id ) : BoundActor
id int
return BoundActor
        protected BoundActor GetBoundActor(int id)
        {
            lock (_boundActorLock)
            {
                BoundActor item;
                return _boundActorMap.TryGetValue(id, out item) ? item : null;
            }
        }