This repository has been archived on 2024-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
species-discovery/src/main/java/org/gcube/portlets/user/speciesdiscovery/client/util/stream/StreamPagingLoaderListener....

17 lines
361 B
Java

/**
*
*/
package org.gcube.portlets.user.speciesdiscovery.client.util.stream;
/**
* @author "Federico De Faveri defaveri@isti.cnr.it"
*
*/
public interface StreamPagingLoaderListener {
public void onStreamStartLoading();
public void onStreamUpdate(int streamSize, int currentStartItem, int currentEndItem);
public void onStreamLoadingComplete();
}