示例#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;
        }
示例#3
0
        /*
         * Create a unique Erlang PID belonging to the local node.
         *
         * @param self the local node.
         *
         * @deprecated use OtpLocalNode:createPid() instead
         **/
        public Pid(OtpLocalNode self)
        {
            Pid p = self.createPid();

            this._id       = p._id;
            this._serial   = p._serial;
            this._creation = p._creation;
            this._node     = p._node;
        }
示例#4
0
文件: Pid.cs 项目: saleyn/otp.net
		/*
		* Create a unique Erlang PID belonging to the local node.
		*
		* @param self the local node.
		*
		@deprecated use OtpLocalNode:createPid() instead
		**/
		public Pid(OtpLocalNode self)
		{
			Pid p = self.createPid();
			
			this._id = p._id;
			this._serial = p._serial;
			this._creation = p._creation;
			this._node = p._node;
		}