// Wrap our BasicClient with the twitter4j client
Twitter4jSitestreamClient t4jClient = new Twitter4jSitestreamClient(
client, queue, Lists.newArrayList(listener), service);
// Establish a connection
t4jClient.connect();
for (int threads = 0; threads < numProcessingThreads; threads++) {
// This must be called once per processing thread
t4jClient.process();
}