|
| int | OperationByteCount [get, set] |
| | Gets sum of outgoing operations in bytes. More...
|
| |
| int | OperationCount [get, set] |
| | Gets count of outgoing operations. More...
|
| |
| int | ResultByteCount [get, set] |
| | Gets sum of byte-cost of incoming operation-results. More...
|
| |
| int | ResultCount [get, set] |
| | Gets count of incoming operation-results. More...
|
| |
| int | EventByteCount [get, set] |
| | Gets sum of byte-cost of incoming events. More...
|
| |
| int | EventCount [get, set] |
| | Gets count of incoming events. More...
|
| |
| int | LongestOpResponseCallback [get, set] |
| | Gets longest time it took to complete a call to OnOperationResponse (in your code). If such a callback takes long, it will lower the network performance and might lead to timeouts. More...
|
| |
| byte | LongestOpResponseCallbackOpCode [get, set] |
| | Gets OperationCode that causes the LongestOpResponseCallback. See that description. More...
|
| |
| int | LongestEventCallback [get, set] |
| | Gets longest time a call to OnEvent (in your code) took. If such a callback takes long, it will lower the network performance and might lead to timeouts. More...
|
| |
| int | LongestMessageCallback [get, set] |
| |
| int | LongestRawMessageCallback [get, set] |
| |
| byte | LongestEventCallbackCode [get, set] |
| | Gets EventCode that caused the LongestEventCallback. See that description. More...
|
| |
| int | LongestDeltaBetweenDispatching [get, set] |
| | Gets longest time between subsequent calls to DispatchIncomgingCommands in milliseconds. Note: This is not a crucial timing for the networking. Long gaps just add "local lag" to events that are available already. More...
|
| |
| int | LongestDeltaBetweenSending [get, set] |
| | Gets longest time between subsequent calls to SendOutgoingCommands in milliseconds. Note: This is a crucial value for network stability. Without calling SendOutgoingCommands, nothing will be sent to the server, who might time out this client. More...
|
| |
| int | DispatchCalls [get] |
| | Gets number of calls of DispatchIncomingCommands. More...
|
| |
| int | DispatchIncomingCommandsCalls [get, set] |
| | Gets number of calls of DispatchIncomingCommands. More...
|
| |
| int | SendOutgoingCommandsCalls [get, set] |
| | Gets number of calls of SendOutgoingCommands. More...
|
| |
| int | TotalByteCount [get] |
| | Gets sum of byte-cost of all "logic level" messages. More...
|
| |
| int | TotalMessageCount [get] |
| | Gets sum of counted "logic level" messages. More...
|
| |
| int | TotalIncomingByteCount [get] |
| | Gets sum of byte-cost of all incoming "logic level" messages. More...
|
| |
| int | TotalIncomingMessageCount [get] |
| | Gets sum of counted incoming "logic level" messages. More...
|
| |
| int | TotalOutgoingByteCount [get] |
| | Gets sum of byte-cost of all outgoing "logic level" messages (= OperationByteCount). More...
|
| |
| int | TotalOutgoingMessageCount [get] |
| | Gets sum of counted outgoing "logic level" messages (= OperationCount). More...
|
| |
Only in use as long as PhotonPeer.TrafficStatsEnabled = true;
| void ExitGames.Client.Photon.TrafficStatsGameLevel.ResetMaximumCounters |
( |
| ) |
|
|
inline |
Resets the values that can be maxed out, like LongestDeltaBetweenDispatching. See remarks.
Set to 0: LongestDeltaBetweenDispatching, LongestDeltaBetweenSending, LongestEventCallback, LongestEventCallbackCode, LongestOpResponseCallback, LongestOpResponseCallbackOpCode. Also resets internal values: timeOfLastDispatchCall and timeOfLastSendCall (so intervals are tracked correctly).