blob: 34b63f05e7f225413b7705f88856ad55c5f5859d [file] [log] [blame]
package chip.clusterinfo;
import java.util.Map;
/**
* Interface for making customized callback that implements both onSuccess and onFailure functions.
*/
public interface ClusterCommandCallback {
void onSuccess(Map<CommandResponseInfo, Object> responseValues);
void onFailure(Exception exception);
}