Package es.situm.sdk.communication
Annotation Interface CommunicationOptions
Deprecated.
Options used in
CommunicationManager. If multiple values are set the options will take priority in this order:
FORCE_DOWNLOAD, SERVER_FIRST, CACHE_FIRST, DEFAULT-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringDeprecated.Force to use cache even if it's too old.static final StringDeprecated.If there is no cache or if the cache is too old it will download from server.static final StringDeprecated.Force download from server, the cache won't be used.static final StringDeprecated.Preload the images when you are downloading an object that contains them like Floor or PoiCategory.static final StringDeprecated.Force download from server.
-
Field Details
-
FORCE_DOWNLOAD
Deprecated.Force download from server, the cache won't be used. The value in the options map must be a boolean. Default value is false- See Also:
-
SERVER_FIRST
Deprecated.Force download from server. If the server is not responding or there is no internet connection it will use the cache. The value in the options map must be a boolean. Default value is false- See Also:
-
CACHE_FIRST
Deprecated.Force to use cache even if it's too old. If there is not cache available it will try to download from server. The value in the options map must be a boolean. Default value is false- See Also:
-
PRELOAD_IMAGES
Deprecated.Preload the images when you are downloading an object that contains them like Floor or PoiCategory. The value in the options map must be a boolean. Default value is true- See Also:
-
DEFAULT
Deprecated.If there is no cache or if the cache is too old it will download from server. The value in the options map must be a boolean. Default value is true- See Also:
-