Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- using System.Threading.Tasks;
- using MQTTnet.Core.Client;
- using System.IO;
-
- namespace MQTTnet.Core.Channel
- {
- public interface IMqttCommunicationChannel
- {
- Task ConnectAsync(MqttClientOptions options);
-
- Task DisconnectAsync();
-
- Stream SendStream { get; }
-
- Stream ReceiveStream { get; }
- }
- }
|