Macromedia flash media server 2-server-side actionscript language reference Benutzerhandbuch

Seite von 74
30
Server Management ActionScript Language Reference
tSocket.call("getConfig2", new onGetConfig(), key, scope);
// return the whole Vhost.xml
key = "";
scope = "Adaptor:_defaultRoot_/VHost:_defaultVHost_";
tSocket.call("getConfig2", new onGetConfig(), key, scope);
See also
getGroupMembers()
Availability
Flash Player 6.
Flash Media Server 2.
Usage
getGroupMembers(app_instance, groupNumber)
Parameters
app_instance
  A string that contains the name of the instance of the application on which 
the group resides, in the form 
application_name/instance_name
. You must specify both 
the application name and the instance name, separated by a slash (
/
), even if you want 
performance statistics for the default instance of the application.
For example, to specify the default instance for an application named 
ChatApp
, specify 
ChatApp/_defInst_
.
groupNumber 
A number that contains the group’s client ID.
Returns
If the call succeeds, the server sends a reply information object with a 
level
 property of 
status
, a 
code
 property of 
NetConnection.Call.Success
, and a 
data
 property that is an 
array containing the client IDs of all the individual clients connected through this group.
Description
Returns a list of the group members for a particular group. Groups are multiplexed 
connections from a remote edge server to an origin server. Each group connection represents 
at least one individual connection to another Flash Media Server that is acting as proxy for 
this server.
See also