Uses of Class
org.android.activityminer.app.util.ObservableWorkerThreadWithProgressNotification

Packages that use ObservableWorkerThreadWithProgressNotification
org.android.activityminer.app.service GUI - Data mining background service, e.g. responsible for feature extraction, model creation, model evaluation and data import/export, 
org.android.activityminer.logic.classification Logic layer - classifiers, feature normalizer, PMML builder. 
org.android.activityminer.logic.evaluation Logic layer - Cross validation and related tools. 
org.android.activityminer.logic.features Logic layer - Feature implementation and the extraction logic. 
org.android.activityminer.logic.features.selection Logic layer - Preparation of the logic for automatic feature selection (not used yet). 
org.android.activityminer.logic.util Logic layer - Utility components. 
 

Uses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.app.service
 

Fields in org.android.activityminer.app.service declared as ObservableWorkerThreadWithProgressNotification
private  ObservableWorkerThreadWithProgressNotification BackgroundService.currentTask
          Reference to an active feature extraction thread
 

Fields in org.android.activityminer.app.service with type parameters of type ObservableWorkerThreadWithProgressNotification
private  Queue<ObservableWorkerThreadWithProgressNotification> BackgroundService.queue
          The queue for batch processing.
 

Methods in org.android.activityminer.app.service that return ObservableWorkerThreadWithProgressNotification
private  ObservableWorkerThreadWithProgressNotification BackgroundService.getCurrentTask()
          Getter for the current task
 

Methods in org.android.activityminer.app.service with parameters of type ObservableWorkerThreadWithProgressNotification
private  void BackgroundService.setCurrentTask(ObservableWorkerThreadWithProgressNotification thread)
          Setter for the current task
 

Uses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.classification
 

Subclasses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.classification
 class ModelCreationThread
          The model creation thread.
 

Uses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.evaluation
 

Subclasses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.evaluation
 class EvaluationThread
          The evaluation extraction thread.
 

Uses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.features
 

Subclasses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.features
 class FeatureExtractionThread<T extends Enum<T> & Dimensions>
          The feature extraction thread.
 class FeatureVectorExportThread
          The thread for feature vector export to csv file.
 

Methods in org.android.activityminer.logic.features that return ObservableWorkerThreadWithProgressNotification
static ObservableWorkerThreadWithProgressNotification FeatureExtractionThread.create(Context context, DBManager dbManager, Configuration config, long[] sequenceIds, boolean hasToAdaptToConfiguration, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create a feature extraction thread for the given configuration and recording identifiers.
static ObservableWorkerThreadWithProgressNotification FeatureExtractionThread.createAndRun(Context context, DBManager dbManager, Configuration config, long[] sequenceIds, boolean hasToAdaptToConfiguration, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create and execute a feature extraction thread for the given configuration and recording identifiers.
 

Uses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.features.selection
 

Subclasses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.features.selection
 class FeatureSelectionThread
          The feature selection thread.
 

Uses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.util
 

Subclasses of ObservableWorkerThreadWithProgressNotification in org.android.activityminer.logic.util
 class AbstractLinearAccelerationUpdateThread<T extends Enum<T> & Dimensions>
          Base type for threads in need to update the linear acceleration data by reapplying the gravitation filter.
 class DatabaseExportThread
          The database export thread.
 class DatabaseImportThread
          The database import thread.
 class FileCopyThread
          The file copy thread.
 class LinearAccelerationUpdateThread<T extends Enum<T> & Dimensions>
          The thread to update the linear acceleration values in the raw recorded data by the own linear accelerator source filter implementation.
 class ModelFileExportThread
          The model file export thread.
 class NNInterpolationUpdateThread<T extends Enum<T> & Dimensions>
          The thread to interpolate the gaps due to delays in the raw recorded data.
 class RawRecordingDataExportThread<T extends Enum<T> & Dimensions>
          The thread for raw recording data export to csv file.
 class TrainingDataDeletionThread
          A simple training data deletion thread for batch processing
 

Methods in org.android.activityminer.logic.util that return ObservableWorkerThreadWithProgressNotification
static ObservableWorkerThreadWithProgressNotification NNInterpolationUpdateThread.create(Context context, DBManager dbManager, RuntimeConfiguration config, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create a NN gap interpolation thread for raw time series.
static ObservableWorkerThreadWithProgressNotification LinearAccelerationUpdateThread.create(Context context, DBManager dbManager, RuntimeConfiguration config, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create a linear acceleration update thread
static ObservableWorkerThreadWithProgressNotification RawRecordingDataExportThread.create(Context context, DBManager dbManager, RuntimeConfiguration config, String fileName, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create and execute a feature vector export thread
static ObservableWorkerThreadWithProgressNotification NNInterpolationUpdateThread.createAndRun(Context context, DBManager dbManager, RuntimeConfiguration config, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create and execute a NN gap interpolation thread for raw time series.
static ObservableWorkerThreadWithProgressNotification LinearAccelerationUpdateThread.createAndRun(Context context, DBManager dbManager, RuntimeConfiguration config, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create and start a linear acceleration update thread
static ObservableWorkerThreadWithProgressNotification RawRecordingDataExportThread.createAndRun(Context context, DBManager dbManager, RuntimeConfiguration config, String fileName, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create and execute a feature vector export thread
static ObservableWorkerThreadWithProgressNotification DatabaseImportThread.createAndRun(Context context, File srcFile, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create and execute a database import thread.
static ObservableWorkerThreadWithProgressNotification DatabaseExportThread.createAndRun(Context context, File destFile, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create and execute a database export thread.
static ObservableWorkerThreadWithProgressNotification ModelFileExportThread.createAndRun(Context context, File srcFile, File destFile, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create and execute a database export thread.
static ObservableWorkerThreadWithProgressNotification FileCopyThread.createAndRun(Context context, File srcFile, File destFile, EventObserver<TaskFinishedEvent> finishedObserver, Class<? extends Activity> intentReceiver)
          Does create and execute a file copy thread.