package org.gcube.portlet.user.userstatisticsportlet.client; import org.gcube.portlet.user.userstatisticsportlet.shared.PostsStatsBean; import org.gcube.portlet.user.userstatisticsportlet.shared.UserInformation; import com.google.gwt.user.client.rpc.AsyncCallback; /** * Async version of the UserStatisticsService interface * * @author Costantino Perciante at ISTI-CNR */ public interface UserStatisticsServiceAsync { void getUserSettings(AsyncCallback callback); void getPostsStats(AsyncCallback callback); void getTotalSpaceInUse(AsyncCallback callback); void getProfileStrength(AsyncCallback callback); }