package com.keylesspalace.tusky; import java.io.IOException; import java.util.List; public interface FetchTimelineListener { void onFetchTimelineSuccess(List statuses, boolean added); void onFetchTimelineFailure(IOException e); }