d3adspace / constrictor

Robust and useful library when working with netty and similar frameworks. Contains networking utility like reachability checks, Health Checker and specific utils for example netty pipelines.

Home Page:https://www.d3adspace.de

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

constrictor

Robust and useful library when working with netty and similar frameworks. Contains networking utility like reachability checks, Health Checker and specific utils for example netty pipelines.

Build Status

Build Status
Master Build Status
Development Build Status

Installation / Usage

Maven repositories

<repositories>
    <!-- Klauke Enterprises Releases -->
    <repository>
        <id>klauke-enterprises-maven-releases</id>
        <name>Klauke Enterprises Maven Releases</name>
        <url>https://repository.klauke-enterprises.com/repository/maven-releases/</url>
    </repository>
	
    <!-- Klauke Enterprises Snapshots -->
    <repository>
        <id>klauke-enterprises-maven-snapshots</id>
        <name>Klauke Enterprises Maven Snapshots</name>
        <url>https://repository.klauke-enterprises.com/repository/maven-snapshots/</url>
    </repository>
</repositories>

Maven dependencies

Combined all module:

<!-- All -->
<dependency>
    <groupId>de.d3adspace.constrictor</groupId>
    <artifactId>constrictor-netty</artifactId>
    <version>2.2</version>
    <scope>compile</scope>
</dependency>

Netty utils:

<!-- Netty -->
<dependency>
    <groupId>de.d3adspace.constrictor</groupId>
    <artifactId>constrictor-netty</artifactId>
    <version>2.2</version>
    <scope>compile</scope>
</dependency>

TCP utils:

<!-- TCP -->
<dependency>
    <groupId>de.d3adspace.constrictor</groupId>
    <artifactId>constrictor-tcp</artifactId>
    <version>2.2</version>
    <scope>compile</scope>
</dependency>

UDP utils:

<!-- UDP -->
<dependency>
    <groupId>de.d3adspace.constrictor</groupId>
    <artifactId>constrictor-udp</artifactId>
    <version>2.2</version>
    <scope>compile</scope>
</dependency>

About

Robust and useful library when working with netty and similar frameworks. Contains networking utility like reachability checks, Health Checker and specific utils for example netty pipelines.

https://www.d3adspace.de

License:MIT License


Languages

Language:Java 100.0%