Interface OfficeManager
-
- All Known Implementing Classes:
OfficeManagerImpl
public interface OfficeManager
ManagesAssetManager
instances within anOffice
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssetManager
getAssetManager(AssetManagerReference assetManagerReference)
Obtains theAssetManager
for theAssetManagerReference
.long
getMonitorInterval()
Obtains the interval in milliseconds to monitor theAsset
instances.void
runAssetChecks()
Runs the checks on theAsset
instances managed by thisOfficeManager
.
-
-
-
Method Detail
-
getAssetManager
AssetManager getAssetManager(AssetManagerReference assetManagerReference)
Obtains theAssetManager
for theAssetManagerReference
.- Parameters:
assetManagerReference
-AssetManagerReference
.- Returns:
AssetManager
for theAssetManagerReference
.
-
getMonitorInterval
long getMonitorInterval()
Obtains the interval in milliseconds to monitor theAsset
instances.- Returns:
- Interval in milliseconds to monitor the
Asset
instances.
-
runAssetChecks
void runAssetChecks()
Runs the checks on theAsset
instances managed by thisOfficeManager
.
-
-