twitter4j.StreamImplementation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twitter4j-stream Show documentation
Show all versions of twitter4j-stream Show documentation
A Java library for the Twitter API
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