Uses of Interface
fiftyone.mobile.detection.Disposable

Packages that use Disposable
fiftyone.mobile.detection   
fiftyone.mobile.detection.entities.memory   
fiftyone.mobile.detection.entities.stream   
 

Uses of Disposable in fiftyone.mobile.detection
 

Subinterfaces of Disposable in fiftyone.mobile.detection
 interface ReadonlyList<T extends BaseEntity>
          A list which only provides those features needed to read items from the list.
 

Classes in fiftyone.mobile.detection that implement Disposable
 class Dataset
          Data set used for device detection created by the reader classes.
 class TrieProvider
          Decision trie data structure provider.
 

Uses of Disposable in fiftyone.mobile.detection.entities.memory
 

Classes in fiftyone.mobile.detection.entities.memory that implement Disposable
 class BaseList<T extends BaseEntity>
          Lists can be stored as a set of related objects entirely within memory, or the relevant objects loaded as required from a file or other permanent store as required.
 class MemoryFixedList<T extends BaseEntity>
          A readonly list of fixed length entity types held in memory.
 class MemoryVariableList<T extends BaseEntity>
          A readonly list of variable length entity types held in memory.
 

Uses of Disposable in fiftyone.mobile.detection.entities.stream
 

Classes in fiftyone.mobile.detection.entities.stream that implement Disposable
 class Cache<T>
          Many of the entities used by the detector data set are requested repeatedly.
 class Pool
          As multiple threads need to read from the Source concurrently this class provides a mechanism for readers to be recycled across threads and requests.
 class Source
          Encapsulates either a byte array or a file containing the uncompressed data structures used by the data set.
 class StreamFixedList<T extends BaseEntity>
          Constructs a new instance of FixedList.
 class StreamVariableList<T extends BaseEntity>
          A readonly list of variable length entity types held on persistent storage rather than in memory.
 class TriePool
          As multiple threads need to read from the Source concurrently this class provides a mechanism for readers to be recycled across threads and requests.
 class TrieSource
          Encapsulates either a byte array or a file containing the uncompressed data structures used by the data set.