52 lines
1.1 KiB
Java
52 lines
1.1 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.tridium.sys;
|
|
|
|
import com.tridium.sys.resource.ResourceReport;
|
|
import javax.baja.sys.BInterface;
|
|
import javax.baja.sys.Sys;
|
|
import javax.baja.sys.Type;
|
|
|
|
public interface BIPlatform
|
|
extends BInterface {
|
|
public static final Type TYPE;
|
|
|
|
public void initPlatform() throws Exception;
|
|
|
|
public void poll();
|
|
|
|
public int getCpuUsage();
|
|
|
|
public int getMemoryUsage();
|
|
|
|
public boolean isFlashFileSystem();
|
|
|
|
public int getTotalMemory();
|
|
|
|
public String checkForStationFault();
|
|
|
|
public void queryResources(ResourceReport var1);
|
|
|
|
public void reportSummaryFields(String[] var1, String[] var2);
|
|
|
|
public void stationStarted();
|
|
|
|
public void resetLocalDaemonSession();
|
|
|
|
public boolean isStationAutoSaveEnabled();
|
|
|
|
public long getStationAutoSaveFrequency();
|
|
|
|
public int getStationSaveBackupCount();
|
|
|
|
static {
|
|
Class clazz = 1.class$com$tridium$sys$BIPlatform;
|
|
if (clazz == null) {
|
|
clazz = 1.class$com$tridium$sys$BIPlatform = 1.class("[Lcom.tridium.sys.BIPlatform;", false);
|
|
}
|
|
TYPE = Sys.loadType(clazz);
|
|
}
|
|
}
|
|
|