Uses of Class
de.uniba.wiai.lspi.chord.service.ServiceException

Packages that use ServiceException
de.uniba.wiai.lspi.chord.service Provides the API for applications using the Chord implementation. 
de.uniba.wiai.lspi.chord.service.impl Implements the Chord protocol. 
 

Uses of ServiceException in de.uniba.wiai.lspi.chord.service
 

Methods in de.uniba.wiai.lspi.chord.service that throw ServiceException
 void Chord.create()
          Creates a new chord network which is not connected to any other node.
 void AsynChord.create()
          Creates a new chord network which is not connected to any other node.
 void Chord.create(URL localURL)
          Creates a new chord network which is not connected to any other node.
 void AsynChord.create(URL localURL)
          Creates a new chord network which is not connected to any other node.
 java.util.Set<java.io.Serializable> ChordRetrievalFuture.getResult()
          Method to obtain the result of the retrieve operation associated with this.
 void Chord.initialJoin(Floor floor, URL bootstrapURL)
           
 void AsynChord.initialJoin(Floor floor, URL bootstrapURL)
           
 void Chord.initialJoin(Floor floor, URL localURL, URL bootstrapURL)
           
 void AsynChord.initialJoin(Floor floor, URL localURL, URL bootstrapURL)
           
 void Chord.insert(java.lang.String res, java.io.Serializable object)
          Inserts a new data object into the network stored under the given key.
 boolean ChordFuture.isDone()
          Method to test if the method associated with this has been finished.
 void Chord.join(Floor floor, URL bootstrapURL)
          Joins an existing chord network and announces its presence to the other nodes.
 void AsynChord.join(Floor floor, URL bootstrapURL)
          Joins an existing chord network and announces its presence to the other nodes.
 void Chord.join(Floor floor, URL localURL, URL bootstrapURL)
          Joins an existing chord network and announces its presence to the other nodes.
 void AsynChord.join(Floor floor, URL localURL, URL bootstrapURL)
          Joins an existing chord network and announces its presence to the other nodes.
 void Chord.leave()
          Disconnects from the network.
 void AsynChord.leave()
          Disconnects from the network.
 void Chord.remove(java.lang.String res, java.io.Serializable object)
          Removes the given object stored under given key from the network.
 java.util.Set<java.io.Serializable> Chord.retrieve(java.lang.String res)
          Attempts to find all objects with given key.
 void ChordFuture.waitForBeingDone()
          This method blocks the calling thread until the execution of the method associated with this has been finished.
 

Uses of ServiceException in de.uniba.wiai.lspi.chord.service.impl
 

Methods in de.uniba.wiai.lspi.chord.service.impl that throw ServiceException
 void ChordImpl.create()
           
 void ChordImpl.create(URL localURL1)
           
 void ChordImpl.initialJoin(Floor floor, URL bootstrapURL)
           
 void ChordImpl.initialJoin(Floor floor, URL localURL1, URL bootstrapURL)
           
 void ChordImpl.join(Floor floor, URL bootstrapURL)
           
 void ChordImpl.join(Floor floor, URL localURL1, URL bootstrapURL)
           
 Floor ChordImpl.join(URL bootstrapURL)