
Package ca.uhn.fhir.rest.server.util
Interface IResourceRepositoryCache
- All Known Subinterfaces:
ISearchParamRegistry
- All Known Implementing Classes:
FhirContextSearchParamRegistry
,RestfulServerConfiguration
public interface IResourceRepositoryCache
-
Method Summary
Modifier and TypeMethodDescriptiondefault 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
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
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.
-