C# 클래스 Examples.ControlClientConnectingAsynchronously.TopicAddCallback

상속: ITopicControlAddCallback
파일 보기 프로젝트 열기: pushtechnology/diffusion-examples

공개 메소드들

메소드 설명
OnDiscard ( ) : void

This is called to notify that a call context was closed prematurely, typically due to a timeout or the session being closed. No further calls will be made for the context.

OnTopicAddFailed ( string topicPath, TopicAddFailReason reason ) : void

An attempt to add a topic has failed.

OnTopicAdded ( string topicPath ) : void

Topic has been added.

TopicAddCallback ( ISession session ) : PushTechnology.ClientInterface.Client.Callbacks

Constructor.

메소드 상세

OnDiscard() 공개 메소드

This is called to notify that a call context was closed prematurely, typically due to a timeout or the session being closed. No further calls will be made for the context.
public OnDiscard ( ) : void
리턴 void

OnTopicAddFailed() 공개 메소드

An attempt to add a topic has failed.
public OnTopicAddFailed ( string topicPath, TopicAddFailReason reason ) : void
topicPath string The topic path as supplied to the add request.
reason TopicAddFailReason The reason for failure.
리턴 void

OnTopicAdded() 공개 메소드

Topic has been added.
public OnTopicAdded ( string topicPath ) : void
topicPath string The full path of the topic that was added.
리턴 void

TopicAddCallback() 공개 메소드

Constructor.
public TopicAddCallback ( ISession session ) : PushTechnology.ClientInterface.Client.Callbacks
session ISession The client session.
리턴 PushTechnology.ClientInterface.Client.Callbacks