Uses of Class
org.ourgrid.peer.manager.exception.RequestDoesNotExistException

Packages that use RequestDoesNotExistException
org.ourgrid.peer.manager   
org.ourgrid.peer.manager.request   
 

Uses of RequestDoesNotExistException in org.ourgrid.peer.manager
 

Methods in org.ourgrid.peer.manager that throw RequestDoesNotExistException
protected  void EBPeerManager.redistributeLocalGumsForLocalRequests(long newRequestId)
           
protected  void EBPeerManager.redistributeLocalGumsForRemoteRequests(long newRequestId)
           
protected  void EBPeerManager.respondRequest(long newRequestId)
          Tries to serve a request with local deallocated gums.
 void EBPeerManagerTest.testConsumerIsDead3()
           
 void EBPeerManagerTest.testConsumerIsDeadWithRemoteGum()
           
 void EBPeerManagerTest.testDisposeOfForCommunityGuMs()
          Verifies if the disposed community gums are been distributed correctly.
 void EBPeerManagerTest.testDisposeOfForLocalGuMs()
          Verifies if the disposed local gums are been distributed correctly.
 void EBPeerManagerTest.testGumWasLost()
          Verifies the lostGuM() method called by local and community requests tries to provide another gums.
 void EBPeerManagerTest.testHereIsGuMForCommunityGuMs()
          Verifies if the hereIsGuM() called by community is working correctly.
 void EBPeerManagerTest.testHereIsGuMForCommunityGuMsWhenRequestDoesntExistOrFulfilled()
          Verifies if the hereIsGuM() is working correctly when the request is already fulfilled or doesn't exist.
 void EBPeerManagerTest.testHereIsGuMForLocalGuMs()
          Verifies if the hereIsGuM() called by EBLocalGuMPFacade when there is more requests is working correctly.
 void EBPeerManagerTest.testLocalGumIsDeadAndUnwantedGum()
           
 void EBPeerManagerTest.testOverloadWannaGuMsHereIsGuM()
          Verifies the wannaGuMs() and hereIsGuM() methods overloaded.
 void EBPeerManagerTest.testPauseResume1()
           
 void EBPeerManagerTest.testPauseResume2()
           
 void EBPeerManagerTest.testRemoteUnwantedGum()
           
 void EBPeerManagerTest.testUnwantedGumsAreNotAllocated()
           
 void EBPeerManagerTest.testUnwantedGumsWithDifferentRequest()
           
 void EBPeerManagerTest.testWannaGuMs1()
          Tests the basic functions os wannaGuMs() method.
 void EBPeerManagerTest.testWannaGuMs2()
          Tests if the wannaGuMs() method is delivering the correct number of GuMs.
 void EBPeerManagerTest.testWannaGuMs3()
          Tests the preemption.
 

Uses of RequestDoesNotExistException in org.ourgrid.peer.manager.request
 

Methods in org.ourgrid.peer.manager.request that throw RequestDoesNotExistException
 GumpClient RequestManager.getGumpClient(long requestID)
          Get the GumpClient of the given request id.
 java.util.Collection<GumID> RequestManager.getRequestGums(long requestID)
           
 int RequestManager.getRequestNeededGums(long requestId)
           
 RequestSpec RequestManager.getRequestSpec(long requestID)
           
 java.util.Set<GumID> RequestManager.getUnwantedGumsForRequest(long requestID)
           
 void RequestManager.hereIsGumToRequest(long requestID, GumID gumID)
          Refresh this request about the hereIsGuM() command.
 void RequestManager.pauseRequestGums(long requestID)
          Indicates that a request does not want more gums as far.
 boolean RequestManager.requestHasGum(long requestId, GumID gumID)
           
 boolean RequestManager.requestIsLocal(long requestID)
           
 boolean RequestManager.requestIsPaused(long requestId)
           
 boolean RequestManager.requestNeedMoreGums(long requestId)
           
 boolean RequestManager.requestWantsGum(long requestID, GumID gumID)
           
 void RequestManager.resumeRequestGums(long requestID)
          Indicates that a request needs gums again.
 void RequestManagerTest.testGetConsumerFromRequestID()
          Verifies if consumers are been correctly associated.
 void RequestManagerTest.testMethodCallsForRequest()
          Verifies if the hereIsGuMForRequest(), disposeOfForRequest() and lostGuMForRequest() methods are changing the request.
 void RequestManagerTest.testNoMoreGuMsForRequest()
           
 void RequestManagerTest.testPauseResumeRequest()
          Verifies if the suspendWannaGuMsForRequest() and resumeWannaGuMsForRequest() methods are changing the request.
 void RequestManager.unwantedGum(long requestID, GumID gumID)