IMqttServerPersistedSessionsStorage.cs 259 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. namespace MQTTnet.Server
  5. {
  6. public interface IMqttServerPersistedSessionsStorage
  7. {
  8. Task<IList<IMqttServerPersistedSession>> LoadPersistedSessionsAsync();
  9. }
  10. }