Download httpchannel-api-1.0.0.jar file - Jar h

Jar examples for h:httpchannel-api

Description

Module that defines the HttpChannel API. HttpChannels abstract complex download and upload steps into a simple and easy to use NIO Channel. NIO Channels can be wrapped into an InputStream or OutputStream and used in any way you may find possible to. Aside from that, Channels can be used natively in most next-gen libraries, meaning that you don't even need to wrap anything, just start writing or reading data to or from the channel wth a ByteBuffer. Anyone using the library should try to rely on code from this module only and, only if necessary, on configuration classes that are implementation specific. Relying on any other resource or class is considered an error and should NOT be done. One of the most interesting usages of channels for uploads and download is that you can easily copy data straight from one channel to the other, with less than 10 lines of code! Also, channels allows the implementation of a "tee" mechanism, in which data redden from a single channel can be copied to several other channels on the fly!

You can download jar file httpchannel-api 1.0.0 in this page.

Build File

You can use the following script to add httpchannel-api-1.0.0.jar to your project.

<dependency>
   <groupId>com.rogiel.httpchannel</groupId>
   <artifactId>httpchannel-api</artifactId>
   <version>1.0.0</version>
</dependency>
compile group: 'com.rogiel.httpchannel', name: 'httpchannel-api', version: '1.0.0'
libraryDependencies += "com.rogiel.httpchannel" % "httpchannel-api" % "1.0.0"
<dependency org="com.rogiel.httpchannel" name="httpchannel-api" rev="1.0.0"/>
@Grapes(@Grab(group='com.rogiel.httpchannel', module='httpchannel-api', version='1.0.0'))
'com.rogiel.httpchannel:httpchannel-api:jar:1.0.0'

Download

Click the following link to download the jar file.

httpchannel-api-1.0.0-javadoc.jar
httpchannel-api-1.0.0-sources.jar
httpchannel-api-1.0.0.jar
httpchannel-api-1.0.0.pom



Related Tutorials