Annotation Interface CommunicationOptions


@Deprecated @Retention(CLASS) public @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

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Deprecated.
    Force to use cache even if it's too old.
    static final String
    Deprecated.
    If there is no cache or if the cache is too old it will download from server.
    static final String
    Deprecated.
    Force download from server, the cache won't be used.
    static final String
    Deprecated.
    Preload the images when you are downloading an object that contains them like Floor or PoiCategory.
    static final String
    Deprecated.
    Force download from server.
  • Field Details

    • FORCE_DOWNLOAD

      static final String 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

      static final String 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

      static final String 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

      static final String 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

      static final String 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: