Download reactor-tcp-1.0.1.release.jar file

Introduction

You can download reactor-tcp-1.0.1.release.jar in this page.

License

The Apache Software License, Version 2.0

Type List

reactor-tcp-1.0.1.release.jar file has the following types.

META-INF/MANIFEST.MF
reactor.tcp.AbstractTcpConnection.class
reactor.tcp.Reconnect.class
reactor.tcp.TcpClient.class
reactor.tcp.TcpConnection.class
reactor.tcp.TcpServer.class
reactor.tcp.config.ClientSocketOptions.class
reactor.tcp.config.CommonSocketOptions.class
reactor.tcp.config.ServerSocketOptions.class
reactor.tcp.config.SslOptions.class
reactor.tcp.encoding.ByteArrayCodec.class
reactor.tcp.encoding.Codec.class
reactor.tcp.encoding.DelimitedCodec.class
reactor.tcp.encoding.Frame.class
reactor.tcp.encoding.FrameCodec.class
reactor.tcp.encoding.LengthFieldCodec.class
reactor.tcp.encoding.PassThroughCodec.class
reactor.tcp.encoding.StandardCodecs.class
reactor.tcp.encoding.StringCodec.class
reactor.tcp.encoding.json.JsonCodec.class
reactor.tcp.encoding.syslog.SyslogCodec.class
reactor.tcp.encoding.syslog.SyslogMessage.class
reactor.tcp.netty.NettyClientSocketOptions.class
reactor.tcp.netty.NettyEventLoopDispatcher.class
reactor.tcp.netty.NettyServerSocketOptions.class
reactor.tcp.netty.NettyTcpClient.class
reactor.tcp.netty.NettyTcpConnection.class
reactor.tcp.netty.NettyTcpConnectionChannelInboundHandler.class
reactor.tcp.netty.NettyTcpServer.class
reactor.tcp.spec.IncrementalBackoffReconnectSpec.class
reactor.tcp.spec.TcpClientSpec.class
reactor.tcp.spec.TcpServerSpec.class
reactor.tcp.ssl.SSLEngineSupplier.class
reactor.tcp.support.MessageConsumer.class
reactor.tcp.support.SocketUtils.class

Pom

reactor-tcp-1.0.1.release.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.projectreactor</groupId>
  <artifactId>reactor-tcp</artifactId>
  <version>1.0.1.RELEASE</version>
  <name>Reactor TCP components</name>
  <description>Reactor TCP components</description>
  <url>https://github.com/reactor/reactor</url>
  <organization>
    <name>reactor</name>
    <url>http://github.com/reactor</url>
  </organization>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>smaldini</id>
      <name>Stephane Maldini</name>
      <email>smaldini@gopivotal.com</email>
    </developer>
    <developer>
      <id>jbrisbin</id>
      <name>Jon Brisbin</name>
      <email>jbrisbin@gopivotal.com</email>
    </developer>
    <developer>
      <id>awilkinson</id>
      <name>Andy Wilkinson</name>
      <email>awilkinson@gopivotal.com</email>
    </developer>
  </developers>
  <issueManagement>
    <system>GitHub Issues</system>
    <url>https://github.com/reactor/reactor/issues</url>
  </issueManagement>
  <scm>
    <connection>scm:git:git://github.com/reactor/reactor</connection>
    <developerConnection>scm:git:git://github.com/reactor/reactor</developerConnection>
    <url>https://github.com/reactor/reactor</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.2.3</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.module</groupId>
      <artifactId>jackson-module-afterburner</artifactId>
      <version>2.2.3</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>2.0.0</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>io.netty</groupId>
      <artifactId>netty-all</artifactId>
      <version>4.0.17.Final</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.projectreactor</groupId>
      <artifactId>reactor-core</artifactId>
      <version>1.0.1.RELEASE</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.5</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>org.projectreactor</groupId>
   <artifactId>reactor-tcp</artifactId>
   <version>1.0.1.release</version>
</dependency>

Download

If you think the following reactor-tcp-1.0.1.release.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download reactor-tcp-1.0.1.release.jar file




PreviousNext

Related