Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dev123 committed Apr 1, 2014
1 parent da2b1b6 commit 0255397
Show file tree
Hide file tree
Showing 46 changed files with 6,648 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.txt
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.
9 changes: 5 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Apache License

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down Expand Up @@ -178,15 +179,15 @@ Apache License
APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "{}"
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}
Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -198,4 +199,4 @@ Apache License
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
14 changes: 12 additions & 2 deletions README.md
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+
34 changes: 34 additions & 0 deletions assembly.xml
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>
Loading

0 comments on commit 0255397

Please sign in to comment.