C# 클래스 Ultralight.StompQueue

Stomp message queue
파일 보기 프로젝트 열기: ernstnaezer/ultralight 1 사용 예제들

공개 메소드들

메소드 설명
AddClient ( IStompClient client, string subscriptionId ) : void

Adds the client.

Publish ( string message ) : void

Publishes the specified message to all subscribed clients.

RemoveClient ( IStompClient client ) : void

Removes the client.

StompQueue ( string address, IMessageStore store ) : System

Initializes a new instance of the StompQueue class.

비공개 메소드들

메소드 설명
SendMessage ( IStompClient client, string body, System.Guid messageId, string subscriptionId ) : void

메소드 상세

AddClient() 공개 메소드

Adds the client.
public AddClient ( IStompClient client, string subscriptionId ) : void
client IStompClient The client.
subscriptionId string The subscription id.
리턴 void

Publish() 공개 메소드

Publishes the specified message to all subscribed clients.
public Publish ( string message ) : void
message string The message.
리턴 void

RemoveClient() 공개 메소드

Removes the client.
public RemoveClient ( IStompClient client ) : void
client IStompClient The client.
리턴 void

StompQueue() 공개 메소드

Initializes a new instance of the StompQueue class.
public StompQueue ( string address, IMessageStore store ) : System
address string The address.
store IMessageStore The message store.
리턴 System