File: control

package info (click to toggle)
naga 2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 540 kB
  • ctags: 740
  • sloc: java: 2,469; xml: 70; makefile: 8
file content (28 lines) | stat: -rw-r--r-- 1,161 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Source: naga
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Michael Banck <mbanck@debian.org>
Build-Depends: debhelper (>= 7.0.50~), javahelper, ant, default-jdk
Standards-Version: 3.9.3
Homepage: http://code.google.com/p/naga/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/naga
Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/naga
DM-Upload-Allowed: yes


Package: libnaga-java
Architecture: all
Depends: ${shlibs:Depends}, ${java:Depends}, ${misc:Depends}
Description: Simplified Java NIO asynchronous sockets
 Naga aims to be a very small NIO library that provides a handful of java
 classes to wrap the usual Socket and ServerSocket with asynchronous NIO
 counterparts.
 .
 All of this is driven from a single thread, making it useful for both client
 (e.g. allowing I/O to be done in the AWT-thread without any need for threads)
 and server programming (1 thread for all connections instead of 2
 threads/connection).
 .
 Naga contains the code needed to get NIO up and running without having to code
 partially read buffers and setting various selection key flags.