Akka.Actor.RepointableActorRef.SwapLookup C# (CSharp) Метод

SwapLookup() приватный Метод

private SwapLookup ( ICell cell ) : void
cell ICell
Результат void
        private void SwapLookup(ICell cell)
        {
#pragma warning disable 0420
            //Ok to ignore CS0420 "a reference to a volatile field will not be treated as volatile" for interlocked calls http://msdn.microsoft.com/en-us/library/4bw5ewxy(VS.80).aspx
            Interlocked.Exchange(ref _lookup_DoNotCallMeDirectly, cell);
#pragma warning restore 0420
        }