示例#1
0
文件: Ref.cs 项目: e42s/jungerl
        /*
        * Create a unique Erlang ref belonging to the local node.
        *
        * @param self the local node.
        *
        @deprecated use OtpLocalNode:createRef() instead
        **/
        public Ref(OtpLocalNode self)
        {
            Ref r = self.createRef();

            this._ids = r._ids;
            this._creation = r._creation;
            this._node = r._node;
        }
示例#2
0
文件: Ref.cs 项目: yonglehou/otp.net
        /*
         * Create a unique Erlang ref belonging to the local node.
         *
         * @param self the local node.
         *
         * @deprecated use OtpLocalNode:createRef() instead
         **/
        public Ref(OtpLocalNode self)
        {
            Ref r = self.createRef();

            this._ids      = r._ids;
            this._creation = r._creation;
            this._node     = r._node;
        }