Redis
 sql >> Database >  >> NoSQL >> Redis

Redis Pub/Sub ServiceStack, annullamento del thread

Un esempio che mostra come iscriversi e annullare l'iscrizione ai messaggi è in RedisMqServer, ad esempio:

using (var subscription = redisClient.CreateSubscription())
{
    subscription.OnUnSubscribe = channel => 
        Log.Debug("OnUnSubscribe: " + channel);

    subscription.OnMessage = (channel, msg) =>
    {
        if (msg == "STOP")
        {
            Log.Debug("Stop Command Issued");
            Log.Debug("Unsubscribing from all Channels...");
            subscription.UnSubscribeFromAllChannels(); //Unblocks thread.
        }
    };

    subscription.SubscribeToChannels(QueueNames.TopicIn); //blocks thread
}

Dove utilizza un messaggio di controllo personalizzato per sbloccare il thread in background e annullare l'iscrizione a tutti i canali dall'abbonamento OnMessage gestore.