fetchConfig method

void fetchConfig()

Fetches the most recent config from the server for this client.

Upon completion of the fetch, the ConfigListener will be called to make note of the result.

There is a built in throttle on the number of times this call can be made. That throttle is based on a response from the server.

It is important to know that fetching does not activate a new config.

Implementation

void fetchConfig() {
  configAgent?.fetchConfig();
}