Метод | Описание | |
---|---|---|
Configure ( StackExchange.Redis.ConnectionMultiplexer connection ) : void |
Configures the pub sub instance.
|
|
Publish ( string channel, string value ) : long |
Publishes a message to a channel.
|
|
Publish ( string channel, string key, string value ) : long |
Publishes a message to a channel for a specific key.
|
|
PublishAsync ( string channel, string value ) : Task |
Publishes a message to a channel.
|
|
PublishAsync ( string channel, string key, string value ) : Task |
Publishes a message to a channel for a specific key.
|
|
Subscribe ( string channel, Action |
Creates a subscription to a channel.
|
|
Subscribe ( string channel, string key, Action |
Creates a subscription to a channel for a specific key.
|
|
SubscribeAsync ( string channel, Action |
Creates a subscription to a channel.
|
|
SubscribeAsync ( string channel, string key, Action |
Creates a subscription to a channel for a specific key.
|
public static Configure ( StackExchange.Redis.ConnectionMultiplexer connection ) : void | ||
connection | StackExchange.Redis.ConnectionMultiplexer | /// The connection. /// |
Результат | void |
public static Publish ( string channel, string value ) : long | ||
channel | string | The channel to publish to. |
value | string | The value of the message. |
Результат | long |
public static Publish ( string channel, string key, string value ) : long | ||
channel | string | The channel to publish to. |
key | string | The key to target. |
value | string | The value of the message. |
Результат | long |
public static PublishAsync ( string channel, string value ) : Task |
||
channel | string | The channel to publish to. |
value | string | The value of the message. |
Результат | Task |
public static PublishAsync ( string channel, string key, string value ) : Task |
||
channel | string | The channel to publish to. |
key | string | The key to target. |
value | string | The value of the message. |
Результат | Task |
public static Subscribe ( string channel, Action |
||
channel | string | The channel of the subscription. |
subscriptionCallback | Action |
The callback method. |
Результат | void |
public static Subscribe ( string channel, string key, Action |
||
channel | string | The channel of the subscription. |
key | string | The key to target. |
subscriptionCallback | Action |
The callback method. |
Результат | void |
public static SubscribeAsync ( string channel, Action |
||
channel | string | /// The channel of the subscription. /// |
subscriptionCallback | Action |
/// The callback method. /// |
Результат | Task |
public static SubscribeAsync ( string channel, string key, Action |
||
channel | string | /// The channel of the subscription. /// |
key | string | /// The key to target. /// |
subscriptionCallback | Action |
/// The callback method. /// |
Результат | Task |