gridgo / gridgo-connector

Abstract I/O library
MIT License
5 stars 0 forks source link

gridgo-connector

Maven Central Javadocs MIT License Build Status Coverage Status

Gridgo Connector is the I/O abstraction level of Gridgo. It provides easy-to-use I/O connector for various protocols, including Kafka, ZMQ, VertX, etc. Connector consists of Producer and Consumer.

DEPRECATED

This repo has been merged into the main Gridgo repository and thus become deprecated

build status

View build status for all branches

install

<dependency>
    <groupId>io.gridgo</groupId>
    <artifactId>gridgo-connector-core</artifactId>
    <version>0.5.0-SNAPSHOT</version>
</dependency>

You need to install individual connector as needed. For example to install gridgo-kafka:

<dependency>
    <groupId>io.gridgo</groupId>
    <artifactId>gridgo-kafka</artifactId>
    <version>xxx</version>
    <!--same as gridgo-connector-core version-->
</dependency>

getting started

Refer to the getting started guide for instructions

license

This library is distributed under MIT license, see LICENSE