|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DatabaseSample | |
---|---|
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. |
Uses of DatabaseSample in de.unikassel.android.sdcframework.persistence |
---|
Fields in de.unikassel.android.sdcframework.persistence with type parameters of type DatabaseSample | |
---|---|
private Collection<DatabaseSample> |
InsertSamplesCommand.samples
The collection with the samples to insert |
private Collection<DatabaseSample> |
RemoveSamplesCommand.samples
The collection to store the removed samples in |
Methods in de.unikassel.android.sdcframework.persistence that return DatabaseSample | |
---|---|
private DatabaseSample |
DatabaseAdapterImpl.sampleFromCursor(Cursor cursor)
Does create a sample from cursor position |
Methods in de.unikassel.android.sdcframework.persistence that return types with arguments of type DatabaseSample | |
---|---|
private Collection<DatabaseSample> |
PersistentStorageManagerImpl.convertSamplesToDBSamples(SampleCollection samples)
Conversion of samples to database samples |
Collection<DatabaseSample> |
InsertSamplesCommand.getSamples()
Getter for the samples |
Collection<DatabaseSample> |
RemoveSamplesCommand.getSamples()
Getter for the samples |
Methods in de.unikassel.android.sdcframework.persistence with parameters of type DatabaseSample | |
---|---|
private long |
DatabaseAdapterImpl.insertSample(DatabaseSample sample)
Method to insert a sample into the database |
Method parameters in de.unikassel.android.sdcframework.persistence with type arguments of type DatabaseSample | |
---|---|
void |
DatabaseAdapterImpl.insertSamples(Collection<DatabaseSample> samples)
|
private boolean |
DatabaseAdapterImpl.removeSamples(long count,
Collection<DatabaseSample> sampleCollection,
String orderByStatement)
Method to remove the next "count" samples selected ordered by priority and time stamp from the database and stored in a given sample collection. |
boolean |
DatabaseAdapterImpl.removeSamplesHighestPrioFirst(long count,
Collection<DatabaseSample> sampleCollection)
|
boolean |
DatabaseAdapterImpl.removeSamplesLowestPrioFirst(long count,
Collection<DatabaseSample> sampleCollection)
|
boolean |
DatabaseAdapterImpl.removeSamplesOldestTimeStampFirst(long count,
Collection<DatabaseSample> sampleCollection)
|
Constructor parameters in de.unikassel.android.sdcframework.persistence with type arguments of type DatabaseSample | |
---|---|
InsertSamplesCommand(Collection<DatabaseSample> samples)
Constructor |
|
RemoveSamplesCommand(Collection<DatabaseSample> samples,
long count)
Constructor |
Uses of DatabaseSample in de.unikassel.android.sdcframework.persistence.facade |
---|
Method parameters in de.unikassel.android.sdcframework.persistence.facade with type arguments of type DatabaseSample | |
---|---|
void |
DatabaseAdapter.insertSamples(Collection<DatabaseSample> samples)
Method to insert a sample collection into the database |
boolean |
DatabaseAdapter.removeSamplesHighestPrioFirst(long count,
Collection<DatabaseSample> sampleCollection)
Method to remove the next "count" samples which will be selected ordered by ascending priority and ascending time stamp from the database and stored in a given sample collection. |
boolean |
DatabaseAdapter.removeSamplesLowestPrioFirst(long count,
Collection<DatabaseSample> sampleCollection)
Method to remove the next "count" samples which will be selected ordered by descending priority and ascending time stamps from the database and stored in a given sample collection. |
boolean |
DatabaseAdapter.removeSamplesOldestTimeStampFirst(long count,
Collection<DatabaseSample> sampleCollection)
Method to remove the next "count" samples which will be selected ordered by ascending time stamps from the database and stored in a given sample collection. |
Uses of DatabaseSample in de.unikassel.android.sdcframework.transmission |
---|
Method parameters in de.unikassel.android.sdcframework.transmission with type arguments of type DatabaseSample | |
---|---|
private void |
TransferManagerImpl.addSamples(Collection<DatabaseSample> samples)
Does add a collection of database samples to the current sample collection for transmission |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |