All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.getstream.client.service.AggregatedActivityService Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package io.getstream.client.service;

import io.getstream.client.exception.StreamClientException;
import io.getstream.client.model.activities.BaseActivity;
import io.getstream.client.model.activities.AggregatedActivity;
import io.getstream.client.model.beans.StreamResponse;
import io.getstream.client.model.filters.FeedFilter;

import java.io.IOException;

/**
 * Provide methods to interact with Aggregated activities of subtype of {@link BaseActivity}.
 *
 * @param  Subtype of {@link BaseActivity} representing the activity type to handle.
 */
public interface AggregatedActivityService {

    /**
     * List aggregated activities.
     *
     * @param filter Filter out the activities. Limited to 25 items by default.
     * @return List of aggregated activities
     * @throws IOException in case of network/socket exceptions
     * @throws StreamClientException in case of functional or server-side exception
     */
    StreamResponse> getActivities(FeedFilter filter) throws IOException, StreamClientException;

    /**
     * List aggregated activities.
     *
     * @return List of aggregated activities
     * @throws IOException in case of network/socket exceptions
     * @throws StreamClientException in case of functional or server-side exception
     */
    StreamResponse> getActivities() throws IOException, StreamClientException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy