1 package com.airbnb.lottie; 2 3 /** 4 * Receive a result with either the value or exception for a {@link LottieTask} 5 */ 6 public interface LottieListener<T> { onResult(T result)7 void onResult(T result); 8 } 9