25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
629 B

  1. using System;
  2. namespace MQTTnet.Server
  3. {
  4. public interface IMqttServerOptions
  5. {
  6. Action<MqttApplicationMessageInterceptorContext> ApplicationMessageInterceptor { get; }
  7. int ConnectionBacklog { get; }
  8. Action<MqttConnectionValidatorContext> ConnectionValidator { get; }
  9. TimeSpan DefaultCommunicationTimeout { get; }
  10. MqttServerDefaultEndpointOptions DefaultEndpointOptions { get; }
  11. IMqttServerStorage Storage { get; }
  12. Action<MqttSubscriptionInterceptorContext> SubscriptionInterceptor { get; }
  13. MqttServerTlsEndpointOptions TlsEndpointOptions { get; }
  14. }
  15. }