Photon Server API Documentation
v5.0RC1
Peer.CurrentOperationHandler is an IOperationHandler. The implementor handles incoming OperationRequests (Peer.OnOperationRequest, peer disconnects (Peer.OnDisconnect) and disconnects that are invoked from other peers (Peer.OnDisconnectByOtherPeer). More...
Public Member Functions | |
| void | OnDisconnect (PeerBase peer) |
| Called by Peer.OnDisconnect. More... | |
| OperationResponse | OnOperationRequest (PeerBase peer, OperationRequest operationRequest, SendParameters sendParameters) |
| Called by Peer.OnOperationRequest. More... | |
Peer.CurrentOperationHandler is an IOperationHandler. The implementor handles incoming OperationRequests (Peer.OnOperationRequest, peer disconnects (Peer.OnDisconnect) and disconnects that are invoked from other peers (Peer.OnDisconnectByOtherPeer).
| void Photon.SocketServer.Rpc.IOperationHandler.OnDisconnect | ( | PeerBase | peer | ) |
Called by Peer.OnDisconnect.
| peer | The calling peer. |
Implemented in Photon.LoadBalancing.Common.OperationHandlerBase.
| OperationResponse Photon.SocketServer.Rpc.IOperationHandler.OnOperationRequest | ( | PeerBase | peer, |
| OperationRequest | operationRequest, | ||
| SendParameters | sendParameters | ||
| ) |
Called by Peer.OnOperationRequest.
| peer | The calling peer. |
| operationRequest | The operation request. |
| sendParameters | The send Parameters. |
Implemented in Photon.LoadBalancing.Common.OperationHandlerBase, Photon.LoadBalancing.Master.OperationHandler.OperationHandlerInitial, Photon.LoadBalancing.MasterServer.OperationHandler.OperationHandlerDefault, and Photon.LoadBalancing.Master.OperationHandler.OperationHandlerAuthenticating.