Yoann. B

Results 2 comments of Yoann. B

After reading the code, the subscription is automaticaly Unsubsrcibed on Dispose. [RedisMessageBus.cs](https://github.com/FoundatioFx/Foundatio.Redis/blob/master/src/Foundatio.Redis/Messaging/RedisMessageBus.cs) ``` public override void Dispose() { base.Dispose(); if (_isSubscribed) { using (_lock.Lock()) { if (!_isSubscribed) return; bool isTraceLogLevelEnabled...

Actually, what i want is to keep published messages alive, even if previously subscribers are down. Then when subscribers restart, messages should be processed. Using the sample in source code...