Uses of Interface
com.luciad.fusion.util.ILfnCallback
Package
Description
This package provides the LuciadFusion engine.
Provides the Tile Store abstraction and a file system implementation.
-
Uses of ILfnCallback in com.luciad.fusion.engine
Modifier and TypeMethodDescriptionALfnEngine.fuse
(ILfnCallback<Void> aCallback) Starts the actual fusion.abstract Future
<TLfnProgress> ALfnEngine.getInitialProgress
(ILfnCallback<TLfnProgress> aCallback) Computes the initial progress of the fusion process, before the engine was started. -
Uses of ILfnCallback in com.luciad.fusion.tilestore
Modifier and TypeInterfaceDescriptioninterface
An extension of a callback which can report intermediate progress for long-running operations.interface
An extension of the generalILfnCallback
which adds a specific callback for when content is found.Modifier and TypeMethodDescriptionALfnCoverage.deleteTile
(TLfnTileCoordinates aCoordinates, ILfnCallback<ALfnTileStore.WriteResult> aCallback) Asynchronously deletes a tile from this coverage.ALfnCoverage.deleteUserData
(String aKey, ILfnCallback<ALfnTileStore.WriteResult> aCallback) ALfnResource.deleteUserData
(String aKey, ILfnCallback<ALfnTileStore.WriteResult> aCallback) Deletes binary user data from this resource with a given key.ALfnTileStore.deleteUserData
(String aKey, ILfnCallback<ALfnTileStore.WriteResult> aCallback) Deletes binary user data from this Tile Store with a given key.ALfnTileStoreWrapper.deleteUserData
(String aKey, ILfnCallback<ALfnTileStore.WriteResult> aCallback) TLfnFileSystemTileStore.deleteUserData
(String aKey, ILfnCallback<ALfnTileStore.WriteResult> aCallback) ALfnCoverage.getUserData
(String aKey, WritableByteChannel aSink, ILfnCallback<ALfnTileStore.ReadResult> aCallback) ALfnResource.getUserData
(String aKey, WritableByteChannel aSink, ILfnCallback<ALfnTileStore.ReadResult> aCallback) Gets binary user data from this resource with a given key.ALfnTileStore.getUserData
(String aKey, WritableByteChannel aSink, ILfnCallback<ALfnTileStore.ReadResult> aCallback) Gets binary user data from this Tile Store with a given key.ALfnTileStoreWrapper.getUserData
(String aKey, WritableByteChannel aSink, ILfnCallback<ALfnTileStore.ReadResult> aCallback) TLfnFileSystemTileStore.getUserData
(String aKey, WritableByteChannel aSink, ILfnCallback<ALfnTileStore.ReadResult> aCallback) ALfnCoverage.putTile
(TLfnTileCoordinates aCoordinates, ReadableByteChannel aSource, ByteBuffer aMessageDigest, ILfnCallback<ALfnTileStore.WriteResult> aCallback) Asynchronously puts a tile into this coverage, including the tile digest.ALfnCoverage.putUserData
(String aKey, ReadableByteChannel aSource, ILfnCallback<ALfnTileStore.WriteResult> aCallback) ALfnResource.putUserData
(String aKey, ReadableByteChannel aSource, ILfnCallback<ALfnTileStore.WriteResult> aCallback) Puts binary user data related in this resource with a given key.ALfnTileStore.putUserData
(String aKey, ReadableByteChannel aSource, ILfnCallback<ALfnTileStore.WriteResult> aCallback) Puts binary user data in this Tile Store with a given key.ALfnTileStoreWrapper.putUserData
(String aKey, ReadableByteChannel aSource, ILfnCallback<ALfnTileStore.WriteResult> aCallback) TLfnFileSystemTileStore.putUserData
(String aKey, ReadableByteChannel aSource, ILfnCallback<ALfnTileStore.WriteResult> aCallback)