src/models/StationModel.ts
IStation
constructor(data: any)
|
Defined in src/models/StationModel.ts:3
|
Static getStationName |
getStationName()
|
Defined in src/models/StationModel.ts:57
|
Returns :
void
|
Static airVersion |
airVersion: |
Defined in src/models/StationModel.ts:81
|
Static appVersion |
appVersion: |
Defined in src/models/StationModel.ts:25
|
Static caching |
caching: |
Defined in src/models/StationModel.ts:29
|
Static connection |
connection: |
Defined in src/models/StationModel.ts:73
|
Static connectionStatusChanged |
connectionStatusChanged: |
Defined in src/models/StationModel.ts:61
|
Static id |
id: |
Defined in src/models/StationModel.ts:9
|
Static lastUpdate |
lastUpdate: |
Defined in src/models/StationModel.ts:89
|
Static localAddress |
localAddress: |
Defined in src/models/StationModel.ts:13
|
Static localPort |
localPort: |
Defined in src/models/StationModel.ts:65
|
Static name |
name: |
Defined in src/models/StationModel.ts:53
|
Static os |
os: |
Defined in src/models/StationModel.ts:77
|
Static peakMemory |
peakMemory: |
Defined in src/models/StationModel.ts:21
|
Static publicIp |
publicIp: |
Defined in src/models/StationModel.ts:17
|
Static runningTime |
runningTime: |
Defined in src/models/StationModel.ts:37
|
Static socket |
socket: |
Defined in src/models/StationModel.ts:69
|
Static startTime |
startTime: |
Defined in src/models/StationModel.ts:41
|
Static stationColor |
stationColor: |
Defined in src/models/StationModel.ts:85
|
Static status |
status: |
Defined in src/models/StationModel.ts:45
|
Static totalMemory |
totalMemory: |
Defined in src/models/StationModel.ts:33
|
Static watchDogConnection |
watchDogConnection: |
Defined in src/models/StationModel.ts:49
|
import {StoreModel} from "../models/StoreModel";
import {IStation} from "../store/store.data";
export class StationModel extends StoreModel implements IStation{
constructor(data) {
super(data);
}
public get id() {
return this.getKey('id');
}
public get localAddress() {
return this.getKey('localAddress');
}
public get publicIp() {
return this.getKey('publicIp');
}
public get peakMemory() {
return this.getKey('peakMemory');
}
public get appVersion() {
return this.getKey('appVersion');
}
public get caching() {
return this.getKey('caching');
}
public get totalMemory() {
return this.getKey('totalMemory');
}
public get runningTime() {
return this.getKey('runningTime');
}
public get startTime() {
return this.getKey('startTime');
}
public get status() {
return this.getKey('status');
}
public get watchDogConnection() {
return this.getKey('watchDogConnection');
}
public get name() {
return this.getKey('name');
}
public getStationName() {
return this.getKey('name');
}
public get connectionStatusChanged() {
return this.getKey('connectionStatusChanged');
}
public get localPort():number {
return this.getKey('localPort');
}
public get socket() {
return this.getKey('socket');
}
public get connection() {
return this.getKey('connection');
}
public get os() {
return this.getKey('os');
}
public get airVersion() {
return this.getKey('airVersion');
}
public get stationColor() {
return this.getKey('stationColor');
}
public get lastUpdate() {
return this.getKey('lastUpdate');
}
}