Class SubscriptionContextCallbackDefault<TC>

Default implementation of ISubscriptionContextCallback<TC>.

Inheritance
System.Object
ContextCallbackDefault<TC>
SubscriptionContextCallbackDefault<TC>
Implements
ISubscriptionContextCallback<TC>
IContextCallback<TC>
Inherited Members
ContextCallbackDefault<TC>.OnDiscard(TC)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Topics
Assembly: Diffusion.Client.dll
Syntax
public class SubscriptionContextCallbackDefault<TC> : ContextCallbackDefault<TC>, ISubscriptionContextCallback<TC>, IContextCallback<TC>
Type Parameters
Name Description
TC

The context object type.

Remarks

This simply logs OnComplete calls at 'Debug' level. This method may be overridden to perform more specific processing.

Methods

OnComplete(TC)

Callback method indicating that the requested operation has been processed by the server.

Declaration
public virtual void OnComplete(TC context)
Parameters
Type Name Description
TC context

The context object supplied when making the call.

Implements

ISubscriptionContextCallback<TC>
IContextCallback<TContext>
Back to top