Skip to main content

sow-and-subscribe-conflate

Including the basic AMPS library:

using AMPS.Client;
using AMPS.Client.Message;
using AMPS.Client.Exceptions;

Constructing the command:



Command cmd = new Command(Message.Commands.SOWAndDeltaSubscribe)
.setTopic(topic)
.setOptions(Message.Options.Conflate("250ms"))
;

The command can now be used in execute or executeAsync.