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.

IApplicationMessagePublisher.cs 236 B

12345678910
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. namespace MQTTnet
  4. {
  5. public interface IApplicationMessagePublisher
  6. {
  7. Task PublishAsync(IEnumerable<MqttApplicationMessage> applicationMessages);
  8. }
  9. }