C# Класс Ultralight.StompQueue

Stomp message queue
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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