io.firebus.FirebusAdmin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebus-core Show documentation
Show all versions of firebus-core Show documentation
Firebus core functionality
package io.firebus;
import io.firebus.information.NodeInformation;
public class FirebusAdmin extends Firebus
{
public NodeInformation[] getNodeList()
{
int c = nodeCore.getDirectory().getNodeCount();
NodeInformation[] ni = new NodeInformation[c];
for(int i = 0; i < c; i++)
{
ni[i] = nodeCore.getDirectory().getNode(i);
}
return ni;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy