Example usage for twitter4j.conf ConfigurationContext getInstance

List of usage examples for twitter4j.conf ConfigurationContext getInstance

Introduction

In this page you can find the example usage for twitter4j.conf ConfigurationContext getInstance.

Prototype

public static Configuration getInstance(String configTreePath) 

Source Link

Usage

From source file:mx.bigdata.t4j.TwitterStreamFactory.java

License:Apache License

/**
 * Creates a TwitterStreamFactory with a specified config tree.
 *
 * @param configTreePath the path/*  w w  w.  java2s .co  m*/
 */
public TwitterStreamFactory(String configTreePath) {
    this(ConfigurationContext.getInstance(configTreePath));
}