Exemplo n.º 1
0
        public RealChordRing(IPAddress bootStrapIP, Guid bootStrapChordInstanceGuid)
        {
            chordServer = (ChordServer)(TashjikServer.joinExisting(bootStrapIP, "Chord", bootStrapChordInstanceGuid));
            Guid chordInstanceGuid = chordServer.getGuid();

            incentiveStorageManager = new IncentiveStorageManager();
        }
Exemplo n.º 2
0
        public RealChordRing()
        {
            chordServer = (ChordServer)(TashjikServer.createNew("Chord"));
            Guid chordInstanceGuid = chordServer.getGuid();

            incentiveStorageManager = new IncentiveStorageManager();
        }