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

twitter4j.StreamImplementation Maven / Gradle / Ivy

There is a newer version: 4.0.7
Show newest version
package twitter4j;

import java.io.IOException;

/**
 * @author Yusuke Yamamoto - yusuke at mac.com
 * @since Twitter4J 2.1.8
 */
interface StreamImplementation {
    void next(StreamListener[] listeners) throws TwitterException;

    void close() throws IOException;

    void onException(Exception ex);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy