-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dev123
committed
Apr 1, 2014
1 parent
da2b1b6
commit 0255397
Showing
46 changed files
with
6,648 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
------------------------------------------------------------------------------ | ||
qJava 2.0 [2014.04.02] | ||
------------------------------------------------------------------------------ | ||
|
||
- Support for kdb+ protocol and types: v3.0, v2.6, v<=2.5 | ||
- Synchronous and asynchronous queries | ||
- Convenient asynchronous callbacks mechanism | ||
- Logging of the raw protocol data in case of parsing failure. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
qJava | ||
===== | ||
<!-- img src="http://www.devnet.de/fileadmin/images/DEVnet_Logo2014.png" width="150px" height="150px"/--> | ||
|
||
qJava 2.0 | ||
========= | ||
|
||
The q/kdb+ interface is implemented as a set of Java classes and provides: | ||
- Simple to use API | ||
- Support for synchronous and asynchronous queries | ||
- Convenient asynchronous callbacks mechanism | ||
- Support for kdb+ protocol and types: v3.0, v2.6, v<=2.5 | ||
- Uncompression of the IPC data stream | ||
- Compatible with Java 5.0+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> | ||
<id>qJava</id> | ||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<fileSets> | ||
<fileSet> | ||
<directory>target</directory> | ||
<outputDirectory></outputDirectory> | ||
<excludes> | ||
<exclude>*sources.jar</exclude> | ||
</excludes> | ||
<includes> | ||
<include>*.jar</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>target/apidocs</directory> | ||
<outputDirectory>apidocs</outputDirectory> | ||
<includes> | ||
<include>**/*.*</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>src/sample/java</directory> | ||
<outputDirectory>samples</outputDirectory> | ||
<includes> | ||
<include>*.java</include> | ||
</includes> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
Oops, something went wrong.