Diffusion .NET Client Library  6.1.5
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
PushTechnology.ClientInterface.Client.Callbacks.DefaultServerHandler Class Reference

Abstract default server handler. More...

Inheritance diagram for PushTechnology.ClientInterface.Client.Callbacks.DefaultServerHandler:
PushTechnology.ClientInterface.Client.Callbacks.IServerHandler

Public Member Functions

virtual void OnRegistered (IRegistration registration)
 Called when the handler has been successfully registered with the server. More...
 
virtual void OnClose ()
 Called if the handler is closed. The handler will be closed if the session is closed after the handler has been registered, or if the handler is unregistered using close. More...
 
virtual void OnError (ErrorReason errorReason)
 Notification of a contextual error related to this handler. This is analogous to an unchecked exception being raised. Situations in which onError is called include the session being closed before the handler is registered, a communication timeout, or a problem with the provided parameters. No further calls will be made to this handler. More...
 

Detailed Description

Abstract default server handler.

The methods on this handler simply log callbacks at debug level.

Member Function Documentation

virtual void PushTechnology.ClientInterface.Client.Callbacks.DefaultServerHandler.OnClose ( )
virtual

Called if the handler is closed. The handler will be closed if the session is closed after the handler has been registered, or if the handler is unregistered using close.

No further calls will be made for the handler.

Implements PushTechnology.ClientInterface.Client.Callbacks.IServerHandler.

virtual void PushTechnology.ClientInterface.Client.Callbacks.DefaultServerHandler.OnError ( ErrorReason  errorReason)
virtual

Notification of a contextual error related to this handler. This is analogous to an unchecked exception being raised. Situations in which onError is called include the session being closed before the handler is registered, a communication timeout, or a problem with the provided parameters. No further calls will be made to this handler.

Parameters
errorReasona value representing the error; this can be one of constants defined in ErrorReason, or a feature-specific reason

Implements PushTechnology.ClientInterface.Client.Callbacks.IServerHandler.

virtual void PushTechnology.ClientInterface.Client.Callbacks.DefaultServerHandler.OnRegistered ( IRegistration  registration)
virtual

Called when the handler has been successfully registered with the server.

A session can register at most one a single handler of each type. If there is already a handler registered the operation will fail, registeredHandler will be closed, and the session error handler will be notified. To change the handler, first close the previous handler.

Parameters
registrationreference that allows the handler to be closed

Implements PushTechnology.ClientInterface.Client.Callbacks.IServerHandler.


The documentation for this class was generated from the following file: