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

GetBoundActorId() protected method

protected GetBoundActorId ( IActorRef actor ) : int
actor IActorRef
return int
        protected int GetBoundActorId(IActorRef actor)
        {
            lock (_boundActorLock)
            {
                int actorId;
                return _boundActorInverseMap.TryGetValue(actor, out actorId) ? actorId : 0;
            }
        }