ServiceListenerOnConnectedClient Method |
Triggered when a client is connected to the service.
Namespace: OIV.RemoteViz.RenderingAssembly: OIV.RemoteViz (in OIV.RemoteViz.dll) Version: 9.9.13.0 (9.9.13.0)
Syntaxpublic virtual void OnConnectedClient(
string clientId,
NetworkPerformance networkPerformance
)
Public Overridable Sub OnConnectedClient (
clientId As String,
networkPerformance As NetworkPerformance
)
public:
virtual void OnConnectedClient(
String^ clientId,
NetworkPerformance^ networkPerformance
)
abstract OnConnectedClient :
clientId : string *
networkPerformance : NetworkPerformance -> unit
override OnConnectedClient :
clientId : string *
networkPerformance : NetworkPerformance -> unit
Parameters
- clientId
- Type: SystemString
: ID identifying the client
- networkPerformance
- Type: OIV.RemoteViz.RenderingNetworkPerformance
: network performance for the client.
Network calibration can be enabled or disabled from this parameter. (see NetworkPerformance.enableCalibration and NetworkPerformance.setMaxCalibrationDuration)
Remarks
Default behavior : do nothing
See Also