Interface IResourceRepositoryCache

All Known Subinterfaces:
ISearchParamRegistry
All Known Implementing Classes:
FhirContextSearchParamRegistry, RestfulServerConfiguration

public interface IResourceRepositoryCache
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    Force an immediate cache refresh on the current thread so that when the method returns, the cache will contain all the resources currently in the database.
    default void
    Request that the cache be refreshed at the next convenient time (possibly in a different thread) so that it will soon contain all the resources currently in the database.
  • Method Details

    • requestRefresh

      default void requestRefresh()
      Request that the cache be refreshed at the next convenient time (possibly in a different thread) so that it will soon contain all the resources currently in the database.
    • forceRefresh

      default void forceRefresh()
      Force an immediate cache refresh on the current thread so that when the method returns, the cache will contain all the resources currently in the database. ONLY USE IN TESTS.