Erlang.NET.OtpNode.localStatus C# (CSharp) Method

localStatus() private method

private localStatus ( String node, bool up, Object info ) : void
node String
up bool
info Object
return void
        internal void localStatus(String node, bool up, Object info)
        {
            lock (this)
            {
                if (handler == null)
                {
                    return;
                }
                try
                {
                    handler.localStatus(node, up, info);
                }
                catch (Exception)
                {
                }
            }
        }

Usage Example

Ejemplo n.º 1
0
 public void quit()
 {
     unPublishPort();
     done = true;
     closeSock(sock);
     node.localStatus(node.Node, false, null);
 }