soocrate-core
Version:
this is the core of soocrate application
37 lines (25 loc) • 541 B
JavaScript
/**
* - Cheque network requirements
* * Check Ices
* * Check singling server
* - Check Connectivity
* * build the network
* * Check if graph is connected
*
* - scenario(sim)
* - evaluation(sim)
*/
class test {
constructor(){
}
async checkNetworRequirements(){
await this.checkICES()
await this.checkSignalingServer()
}
async checkICES(){
}
async checkSignalingServer(){
}
async checkConnectivity(){
}
}