org.dsa.iot.dslink.util.handler.CompleteHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dslink Show documentation
Show all versions of dslink Show documentation
SDK for the IoT DSA protocol
package org.dsa.iot.dslink.util.handler;
/**
* Similar to a handler however it provides an easy way to determine
* whether there are no more events.
*
* @author Samuel Grenier
*/
public interface CompleteHandler extends Handler {
/**
* All events are now completed.
*/
void complete();
}