| 1234567891011121314151617181920212223242526272829 |
- using System;
- namespace MQTTnet.Server
- {
- public interface IMqttServerOptions
- {
- string ClientId { get; set; }
- bool EnablePersistentSessions { get; }
- int MaxPendingMessagesPerClient { get; }
- MqttPendingMessagesOverflowStrategy PendingMessagesOverflowStrategy { get; }
- TimeSpan DefaultCommunicationTimeout { get; }
- IMqttServerConnectionValidator ConnectionValidator { get; }
- IMqttServerSubscriptionInterceptor SubscriptionInterceptor { get; }
- IMqttServerUnsubscriptionInterceptor UnsubscriptionInterceptor { get; }
- IMqttServerApplicationMessageInterceptor ApplicationMessageInterceptor { get; }
- IMqttServerClientMessageQueueInterceptor ClientMessageQueueInterceptor { get; }
- MqttServerTcpEndpointOptions DefaultEndpointOptions { get; }
- MqttServerTlsTcpEndpointOptions TlsEndpointOptions { get; }
- IMqttServerStorage Storage { get; }
- IMqttRetainedMessagesManager RetainedMessagesManager { get; }
- }
- }
|