PredixSyncServerInformationFetcher
public class PredixSyncServerInformationFetcher
Retrieves PredixSyncServerInformation
from a given Predix Sync server endpoint
-
Fetched
PredixSyncServerInformation
Declaration
Swift
public var fetchedServerInformation: PredixSyncServerInformation?
-
Returns a PredixSyncServerInformationFetcher for the given endpoint. Fetchers and their retrieved
PredixSyncServerInformation
data are cached until cleared.Declaration
Swift
static public func fetcher(forEndpoint serverEndpointURL: URL) -> PredixSyncServerInformationFetcher
-
Fetches the
PredixSyncServerInformation
from the given endpoint URL, or returns previously cached information.Since
PredixSyncServerInformation
does not usually change, this class will cache this information until the cache is cleared.Declaration
Swift
public func fetchServerInformation(completionHandler: ((PredixSyncServerInformation?) -> Void)?)
Parameters
completionHandler
Completion handler called when the
PredixSyncServerInformation
has been retreived -
Clears the cached
PredixSyncServerInformation
for this instanceDeclaration
Swift
public func clearCache()