You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
521 B

  1. using System;
  2. using MQTTnet.Core.Server;
  3. namespace MQTTnet.Core.Tests
  4. {
  5. public class TestClientSessionFactory : IMqttClientSesssionFactory
  6. {
  7. public MqttClientSession CreateClientSession(string clientId, MqttClientSessionsManager mqttClientSessionsManager)
  8. {
  9. throw new NotImplementedException();
  10. //return new MqttClientSession(clientId, mqttClientSessionsManager, new TestLogger<MqttClientSession>(), new TestLogger<MqttClientPendingMessagesQueue>());
  11. }
  12. }
  13. }