Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| /** | |
| * Copyright 2013 Twitter, Inc. | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, | |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| * See the License for the specific language governing permissions and | |
| * limitations under the License. | |
| **/ | |
| package com.twitter.hbc.example; | |
| import com.google.common.collect.Lists; | |
| import com.twitter.hbc.ClientBuilder; | |
| import com.twitter.hbc.core.Client; | |
| import com.twitter.hbc.core.Constants; | |
| import com.twitter.hbc.core.endpoint.StatusesFilterEndpoint; | |
| import com.twitter.hbc.core.processor.StringDelimitedProcessor; | |
| import com.twitter.hbc.httpclient.auth.Authentication; | |
| import com.twitter.hbc.httpclient.auth.OAuth1; | |
| import java.util.concurrent.BlockingQueue; | |
| import java.util.concurrent.LinkedBlockingQueue; | |
| public class FilterStreamExample { | |
| public static void run(String consumerKey, String consumerSecret, String token, String secret) throws InterruptedException { | |
| BlockingQueue<String> queue = new LinkedBlockingQueue<String>(10000); | |
| StatusesFilterEndpoint endpoint = new StatusesFilterEndpoint(); | |
| // add some track terms | |
| endpoint.trackTerms(Lists.newArrayList("twitterapi", "#yolo")); | |
| Authentication auth = new OAuth1(consumerKey, consumerSecret, token, secret); | |
| // Authentication auth = new BasicAuth(username, password); | |
| // Create a new BasicClient. By default gzip is enabled. | |
| Client client = new ClientBuilder() | |
| .hosts(Constants.STREAM_HOST) | |
| .endpoint(endpoint) | |
| .authentication(auth) | |
| .processor(new StringDelimitedProcessor(queue)) | |
| .build(); | |
| // Establish a connection | |
| client.connect(); | |
| // Do whatever needs to be done with messages | |
| for (int msgRead = 0; msgRead < 1000; msgRead++) { | |
| String msg = queue.take(); | |
| System.out.println(msg); | |
| } | |
| client.stop(); | |
| } | |
| // public static void main(String[] args) { | |
| // try { | |
| // FilterStreamExample.run(args[0], args[1], args[2], args[3]); | |
| // } catch (InterruptedException e) { | |
| // System.out.println(e); | |
| // } | |
| // } | |
| } |