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

Packages that use WorkerThread
de.unikassel.android.sdcframework.broadcast Provides all broadcast related classes. 
de.unikassel.android.sdcframework.broadcast.facade Provides the interfaces for the broadcast package. 
de.unikassel.android.sdcframework.devices Does contain the sensor device specific classes, like the sensor devices, the device manager and the device factory. 
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 WorkerThread in de.unikassel.android.sdcframework.broadcast
 

Classes in de.unikassel.android.sdcframework.broadcast that implement WorkerThread
 class SampleBroadcastServiceImpl
          Implementation of the sample broadcast service interface.
 

Uses of WorkerThread in de.unikassel.android.sdcframework.broadcast.facade
 

Subinterfaces of WorkerThread in de.unikassel.android.sdcframework.broadcast.facade
 interface SampleBroadcastService
          Interface for the sample broadcast service class.
 

Uses of WorkerThread in de.unikassel.android.sdcframework.devices
 

Classes in de.unikassel.android.sdcframework.devices that implement WorkerThread
private  class SampleReceivingDeviceScanner.ScanWorkerThread
          Inner class for a device polling worker thread
 

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

Classes in de.unikassel.android.sdcframework.persistence that implement WorkerThread
 class PersistentStorageManagerImpl
          The persistent storage manager does provide the persistent storage feature for the framework.
 

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

Subinterfaces of WorkerThread in de.unikassel.android.sdcframework.persistence.facade
 interface PersistentStorageManager
          Interface for the persistent storage manager an asynchronous sample observer, responsible for the persistent storage task.
 

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

Classes in de.unikassel.android.sdcframework.transmission that implement WorkerThread
 class TransferManagerImpl
          Implementation of the transfer manager which is the main access component for the transmission module.
 

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

Subinterfaces of WorkerThread in de.unikassel.android.sdcframework.transmission.facade
 interface TransferManager
          Interface for the transfer manager.
 

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

Classes in de.unikassel.android.sdcframework.util that implement WorkerThread
 class AbstractAsynchrounousSampleObserver
          Abstract base class for asynchronous working sample observer components, which do depend on the service life cycle.

Main features:
can be attached as observer for samples, does maintain an event collector to store observed samples in a thread safe queue for further processing, does run asynchronously as daemon worker thread, does implement the life cycle object behavior. Can be extended to implement a specific kind of sample data processing in the AbstractWorkerThread.doWork() method of the thread.
 class AbstractEventDispatcherImpl<T extends ObservableEvent,U extends ObservableEvent>
          Abstract Implementation of a event dispatcher as worker thread.
 class AbstractWorkerThread
          Abstract base class for any thread in the SDC Framework.
 class EventDispatcherImpl<T extends ObservableEvent>
          Implementation of a the event dispatcher task as worker thread.
 class LogfileManager
          A worker thread to realize a the global log file handling.
 class Logger
          The observable logger implemented as Singleton and observable for LogEvents.
(package private)  class TimeProvider.UpdateThread
          Thread for asynchronous time updates
 

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

Subinterfaces of WorkerThread in de.unikassel.android.sdcframework.util.facade
 interface AsynchrounousSampleObserver
          Interface for asynchronous sample observers depending on the service life cycle.
 interface EventDispatcher<T extends ObservableEvent,U extends ObservableEvent>
          Interface for event dispatchers.