コード例 #1
0
        public RealChordRing(IPAddress bootStrapIP, Guid bootStrapChordInstanceGuid)
        {
            chordServer = (ChordServer)(TashjikServer.joinExisting(bootStrapIP, "Chord", bootStrapChordInstanceGuid));
            Guid chordInstanceGuid = chordServer.getGuid();

            incentiveStorageManager = new IncentiveStorageManager();
        }
コード例 #2
0
        public RealChordRing()
        {
            chordServer = (ChordServer)(TashjikServer.createNew("Chord"));
            Guid chordInstanceGuid = chordServer.getGuid();

            incentiveStorageManager = new IncentiveStorageManager();
        }