Sha256: 378ce660942101253e09af31a0e777756e49a0907996184d5148f9350e883f2c

Contents?: true

Size: 1.59 KB

Versions: 19

Compression:

Stored size: 1.59 KB

Contents

# Norikra::Client (norikra-client)

This is the client library implementation for Norikra, and its handy CLI commands.

`Norikra` is CEP server, based on Esper. You can install `gem install norikra` on your JRuby.
For more information, see https://github.com/tagomoris/norikra .

Command `norikra-client` and module `Norikra::Client` are provided for both of CRuby and JRuby.

 * For CRuby: `gem install norikra-client`
 * For JRuby: `gem install norikra-client-jruby`

Both have a same API and same data representaions. You can use which you want.

## Commands

Command `norikra-client` have some subcommands.

    norikra-client -h
    Commands:
      norikra-client event CMD ...ARGS    # send/fetch events
      norikra-client help [COMMAND]       # Describe available commands or one specific command
      norikra-client query CMD ...ARGS    # manage queries
      norikra-client target CMD ...ARGS   # manage targets
      norikra-client typedef CMD ...ARGS  # manage table field/datatype definitions
    
    Options:
      [--host=HOST]
                     # Default: localhost
      [--port=N]
                     # Default: 26571

Of course, you can see helps of each subcommands by `norikra-client SUBCMD help`

## Client Library

In your programs, you can operate Norikra with Norikra::Client instances.

    require 'norikra-client'
    
    client = Norikra::Client.new     # connect to localhost:26571
    # client = Norikra::Client.new(hostname, portnum)

### Instance methods

TBD

## Versions

TBD

## TODO

* TBD

## Copyright

* Copyright (c) 2013- TAGOMORI Satoshi (tagomoris)
* License
  * MIT License

Version data entries

19 entries across 19 versions & 2 rubygems

Version Path
norikra-client-jruby-0.0.9-java README.md
norikra-client-0.0.9 README.md
norikra-client-jruby-0.0.8-java README.md
norikra-client-0.0.8 README.md
norikra-client-jruby-0.0.7-java README.md
norikra-client-0.0.7 README.md
norikra-client-jruby-0.0.6-java README.md
norikra-client-0.0.6 README.md
norikra-client-jruby-0.0.5-java README.md
norikra-client-0.0.5 README.md
norikra-client-jruby-0.0.4-java README.md
norikra-client-0.0.4 README.md
norikra-client-jruby-0.0.4.jruby1-java README.md
norikra-client-jruby-0.0.3-java README.md
norikra-client-0.0.3 README.md
norikra-client-jruby-0.0.2-java README.md
norikra-client-0.0.2 README.md
norikra-client-jruby-0.0.1-java README.md
norikra-client-0.0.1 README.md