IMqttServerPersistedSession.cs 509 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MQTTnet.Server
  4. {
  5. public interface IMqttServerPersistedSession
  6. {
  7. string ClientId { get; }
  8. IDictionary<object, object> Items { get; }
  9. IList<MqttTopicFilter> Subscriptions { get; }
  10. MqttApplicationMessage WillMessage { get; }
  11. uint? WillDelayInterval { get; }
  12. DateTime? SessionExpiryTimestamp { get; }
  13. IList<MqttQueuedApplicationMessage> PendingApplicationMessages { get; }
  14. }
  15. }