|
CountUsers |
|
package Structure;
import j4d.open.*;
class Examplet {
/* getNumberUsers allows you to retrieve the number of connected users.
*/
public int getNumberUsers(opProcess process) throws opException{
int mNbUsers;
try {
mNbUsers = process.CountUsers();
}
catch (opException er){throw er;}
return mNbUsers;
}
}
|
CountUsers |
|