Package com.luciad.fusion.tilestore
Class ALfnTileStore.ReadResult
java.lang.Object
com.luciad.fusion.tilestore.ALfnTileStore.Result
com.luciad.fusion.tilestore.ALfnTileStore.ReadResult
- Enclosing class:
ALfnTileStore
The final result of a read operation ("get").
- Since:
- 2013.1
-
Nested Class Summary
Nested classes/interfaces inherited from class com.luciad.fusion.tilestore.ALfnTileStore.Result
ALfnTileStore.Result.Code
-
Field Summary
Modifier and TypeFieldDescriptionstatic final ALfnTileStore.ReadResult
Indicates that content was found and was written to the receiving channel.static final ALfnTileStore.ReadResult
Indicates that no content was found, and no content was written to the receiving channel.static final ALfnTileStore.ReadResult
Indicates that content was found, but it was not newer than the given modification time, and no content was written to the receiving channel. -
Method Summary
Methods inherited from class com.luciad.fusion.tilestore.ALfnTileStore.Result
getCode, toString
-
Field Details
-
FOUND
Indicates that content was found and was written to the receiving channel. In this case, the asynchronous callbackILfnReadCallback.found(long, long)
will have been called prior toILfnCallback.completed(Object)
. -
NOT_FOUND
Indicates that no content was found, and no content was written to the receiving channel. -
NOT_MODIFIED
Indicates that content was found, but it was not newer than the given modification time, and no content was written to the receiving channel.
-