001package ai.lilystyle.analytics_android; 002 003/** 004 * Interface for data track callbacks. 005 * Methods are called on the MainLooper. 006 */ 007public interface LilyAiListener { 008 /** 009 * Called when the data is sent successfully. 010 */ 011 void onSuccess(); 012 013 /** 014 * Called on data send error. 015 * @param message Message describing what happened. Can be null. 016 */ 017 void onError(String message); 018}