
com.intellifylearning.models.Callback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellisense Show documentation
Show all versions of intellisense Show documentation
IntelliSense Sensor API for Java
package com.intellifylearning.models;
/**
* Response callback from the server.
*/
public interface Callback {
/**
* Called when a response is received from the server after sending a Event
*
* @param success if successful
* @param event event sent
*/
void onResponse(boolean success,
com.intellify.api.caliper.impl.events.Event event);
/**
* Called when a response is received from the server after describing a
* Entity
*
* @param success if successful
* @param entity entity sent
*/
void onResponse(boolean success,
com.intellify.api.caliper.impl.entities.Entity entity);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy