Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface SiteRepositoryInterface

Hierarchy

Index

Methods

create

filter

findAll

  • Gets all repository items. The cached data will be returned if the data has been fetched before. Using the forceFetch parameter, a user can order a fresh copy to be fetched from the server.

    Parameters

    • Optional forceFetch: boolean

      Whether to bypass the cache and retrieve a fresh copy from the server.

    Returns Promise<SiteInterface[]>

    Promise with the repository items.

findByLocation

  • Returns the site that is closest to the specified global coordinate.

    Parameters

    • location: Vector3

      Location of the site in WGS 84

    Returns Promise<SiteInterface>

    Promise that resolves with the site

findOne

  • findOne(id: number, forceFetch?: boolean): Promise<SiteInterface>
  • Get one repository item by id. The cached data will be returned if the data has been fetched before. Use the forceFetch parameter to retrieve a fresh copy from the server. In case a new record is fetched, the data and dataMap will be updated accordingly.

    Parameters

    • id: number

      Identifier of the repository item

    • Optional forceFetch: boolean

      Whether to bypass the cache and retrieve a fresh copy from the server.

    Returns Promise<SiteInterface>

remove

save

Generated using TypeDoc