All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.netty.util.Version Maven / Gradle / Ivy

Go to download

The Netty project is an effort to provide an asynchronous event-driven network application framework and tools for rapid development of maintainable high performance and high scalability protocol servers and clients. In other words, Netty is a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients. It greatly simplifies and streamlines network programming such as TCP and UDP socket server.

There is a newer version: 3.2.10.Final
Show newest version
// DO NOT MODIFY - WILL BE OVERWRITTEN DURING THE BUILD PROCESS
package org.jboss.netty.util;
/**
 * Provides the version information of Netty.
 * @apiviz.landmark
 */
public final class Version {
 /** The version identifier. */
 public static final String ID = "3.2.7.Final-0b5abec";
 /** Prints out the version identifier to stdout. */
 public static void main(String[] args) { System.out.println(ID); }
 private Version() { super(); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy