This master branch contains the original master from zauberlabs including the following pull requests:
- #23: Powertrackreplay
- #26: Geometry, Size, and Sizes implements Serializable
- #27: Added setters to Gnip
Gnip4j is an Open Source (ASFL 2.0) library to access and process Activities (tweets) from the Gnip API from the data from the Java language.
- 100% Pure Java - works on any Java Platform version 1.6 or later
- Minimal dependencies:
- The Jackson JSON library is the only requiered dependecy
- Optionally if
slf4-api
is present in the classpath, logging is supported.
- Out-of-the-box gzip support
- Push model via Streaming (asynchronous processing)
- Error handling support (and exponential-backoff reconnections)
- Monitoring Support (JMX)
- Mule ESB integration
For more information refer to the Gnip4j Reference Guide. Available formats:
Add to your dependency Managment:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.zaubersoftware.gnip4j</groupId>
<artifactId>gnip4j-core</artifactId>
<version>${gnip4j.version}</version>
</dependency>
<dependency>
<groupId>com.zaubersoftware.gnip4j</groupId>
<artifactId>gnip4j-http</artifactId>
<version>${gnip4j.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
...
<properties>
<gnip4j.version>0.1</gnip4j.version>
</properties>
and add to your project:
<dependencies>
<dependency>
<groupId>com.zaubersoftware.gnip4j</groupId>
<artifactId>gnip4j-core</artifactId>
</dependency>
</dependencies>
If you need logging adding slf4j
as a dependency.
final String account = "YourAccount";
final String streamName = "prod";
final AtomicInteger counter = new AtomicInteger();
final StreamNotification observer = new StreamNotificationAdapter() {
@Override
public void notify(final Activity activity, final GnipStream stream) {
final int i = counter.getAndIncrement();
System.out.println(i + "-" + activity.getBody()
+ " " + activity.getGnip().getMatchingRules());
if (i >= 10) {
stream.close();
}
}
};
final GnipStream stream = gnip.createStream(account, streamName, n);
stream.await();
Send pull requests using GitHub.
Had an Issue? Fill it in https://github.com/zauberlabs/gnip4j/issues .
If you want to get in contact with us, or people interested in the project, please visit our group at http://groups.google.com/group/gnip4j
Gnip4j was developed by Zauber, a software boutique & lab based in Buenos Aires, Argentina. We built Gnip4j when we started using Gnip Twitter Premium Feeds. We use their service to create scalable social media dashboards and interactive visualizations that operate in real time. We were already using Twitter4j for other Twitter-related development projects, thus we thought that building a sister project Gnip4j would make perfect sense. We hope you find it useful too. Contact us if you want to contribute to this project or just have any specific requests.
Copyright (c) 2011 Zauber S.A. http://www.zaubersoftware.com/
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.
gnip4j includes portions of software from licenced by the Apache Fundation (package
com.zaubersoftware.gnip4j.api.stats.commonsio
).
None of these is essential for a pull request, but they will all help. They can also be added after the original pull request but before a merge.
- Use the project code format conventions. Import
XXXX.xml
from the root of the project if you are using Eclipse. Checkstyle configuration is available atXXXX.xml
- Make sure all new .java files to have a simple Javadoc class comment with at least an @author tag identifying you, and preferably at least a paragraph on what the class is for.
- Add the ASF license header comment to all new .java files (copy from existing files in the project)
- Add yourself as an @author to the .java files that you modify substantially (more than cosmetic changes).
- A few unit tests would help a lot as well - someone has to do it.
- If no-one else is using your branch, please rebase it against the current master (or other target branch in the main project).