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 241 B

пре 7 година
12345678910
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. namespace MQTTnet.Core
  4. {
  5. public interface IApplicationMessagePublisher
  6. {
  7. Task PublishAsync(IEnumerable<MqttApplicationMessage> applicationMessages);
  8. }
  9. }