Uses of Interface
de.unikassel.android.sdcframework.util.facade.ChainWorker

Packages that use ChainWorker
de.unikassel.android.sdcframework.persistence The classes providing the service for persistent storage of samples on the device. 
de.unikassel.android.sdcframework.persistence.facade Provides the interfaces for the persistence package. 
de.unikassel.android.sdcframework.transmission The classes providing the service for the transfer of stored samples to a remote server. 
de.unikassel.android.sdcframework.transmission.facade Provides the interfaces for the transmission package. 
de.unikassel.android.sdcframework.util Does contain utility classes and interfaces. 
de.unikassel.android.sdcframework.util.facade Provides the interfaces for the util package. 
 

Uses of ChainWorker in de.unikassel.android.sdcframework.persistence
 

Classes in de.unikassel.android.sdcframework.persistence that implement ChainWorker
 class AbstractDatabaseFullStrategy
          Abstract base class for a database full strategy type.
 class DeleteSamplesStrategy
          Implementation of a the database full strategy which does delete old samples.
 class NotificationStrategy
          Implementation of a the database full strategy as service notification.
 class StopServiceStrategy
          Implementation of a the database full strategy which does stop the running service.
 class WaitStrategy
          Implementation of a the database full strategy which does just wait a bit.
 

Uses of ChainWorker in de.unikassel.android.sdcframework.persistence.facade
 

Subinterfaces of ChainWorker in de.unikassel.android.sdcframework.persistence.facade
 interface DatabaseFullStrategy
          Interface for database full strategies.
 

Uses of ChainWorker in de.unikassel.android.sdcframework.transmission
 

Classes in de.unikassel.android.sdcframework.transmission that implement ChainWorker
 class AbstractConnectionStrategy
          Abstract base class for connection strategy types, knowing a successor to delegate to if the strategy fails.
 class MobileConnectionStrategy
          Implementation of the strategy using mobile connections.
 class UseAvailableConnectionStrategy
          Implementation of the strategy which does only use available connections.
 class WLANConnectionStrategy
          Implementation of the strategy using WLAN (Wifi) connections.
 

Uses of ChainWorker in de.unikassel.android.sdcframework.transmission.facade
 

Subinterfaces of ChainWorker in de.unikassel.android.sdcframework.transmission.facade
 interface ConnectionStrategy
          Interface for connection strategy types.
 

Uses of ChainWorker in de.unikassel.android.sdcframework.util
 

Classes in de.unikassel.android.sdcframework.util that implement ChainWorker
 class AbstractChainWorker<T>
          Generic abstract Implementation of the "Chain of Responsibility" pattern..
 

Fields in de.unikassel.android.sdcframework.util declared as ChainWorker
private  ChainWorker<T> AbstractChainWorker.successor
          The successor
 

Methods in de.unikassel.android.sdcframework.util that return ChainWorker
 ChainWorker<T> AbstractChainWorker.getSuccessor()
           
 ChainWorker<T> AbstractChainWorker.withSuccessor(ChainWorker<T> successor)
           
 

Methods in de.unikassel.android.sdcframework.util with parameters of type ChainWorker
 void AbstractChainWorker.setSuccessor(ChainWorker<T> successor)
           
 ChainWorker<T> AbstractChainWorker.withSuccessor(ChainWorker<T> successor)
           
 

Uses of ChainWorker in de.unikassel.android.sdcframework.util.facade
 

Methods in de.unikassel.android.sdcframework.util.facade that return ChainWorker
 ChainWorker<T> ChainWorker.getSuccessor()
          The getter for the successor
 ChainWorker<T> ChainWorker.withSuccessor(ChainWorker<T> successor)
          A setter for the successor returning a reference to successor set
 

Methods in de.unikassel.android.sdcframework.util.facade with parameters of type ChainWorker
 void ChainWorker.setSuccessor(ChainWorker<T> successor)
          The setter for the successor
 ChainWorker<T> ChainWorker.withSuccessor(ChainWorker<T> successor)
          A setter for the successor returning a reference to successor set